Interface GraphRestService

  • All Known Implementing Classes:
    GraphRestServiceImpl

    @Path("graphs")
    @Produces("application/json")
    @Consumes("application/json")
    public interface GraphRestService
    • Method Detail

      • listContainerInfo

        @GET
        javax.ws.rs.core.Response listContainerInfo()
      • getContainer

        @GET
        @Path("/{containerId}")
        javax.ws.rs.core.Response getContainer​(@PathParam("containerId")
                                               String containerId)
      • getGraph

        @GET
        @Path("/{containerId}/{namespace}")
        javax.ws.rs.core.Response getGraph​(@PathParam("containerId")
                                           String containerId,
                                           @PathParam("namespace")
                                           String namespace)
      • getView

        @POST
        @Path("/{containerId}/{namespace}")
        javax.ws.rs.core.Response getView​(@PathParam("containerId")
                                          String containerId,
                                          @PathParam("namespace")
                                          String namespace,
                                          Query query)