Class RestRuntimeManagementServiceImpl


  • @Path("/controller/runtime")
    public class RestRuntimeManagementServiceImpl
    extends Object
    • Constructor Detail

      • RestRuntimeManagementServiceImpl

        public RestRuntimeManagementServiceImpl()
    • Method Detail

      • getServerInstances

        @GET
        @Path("servers/{serverTemplateId}/instances")
        @Produces({"application/xml","application/json"})
        @Consumes({"application/xml","application/json"})
        public javax.ws.rs.core.Response getServerInstances​(@Context
                                                            javax.ws.rs.core.HttpHeaders headers,
                                                            @PathParam("serverTemplateId")
                                                            String serverTemplateId)
      • getServerInstanceContainers

        @GET
        @Path("servers/{serverTemplateId}/instances/{serverInstanceId}/containers")
        @Produces({"application/xml","application/json"})
        @Consumes({"application/xml","application/json"})
        public javax.ws.rs.core.Response getServerInstanceContainers​(@Context
                                                                     javax.ws.rs.core.HttpHeaders headers,
                                                                     @PathParam("serverTemplateId")
                                                                     String serverTemplateId,
                                                                     @PathParam("serverInstanceId")
                                                                     String instanceId)
      • getServerTemplateContainers

        @GET
        @Path("servers/{serverTemplateId}/containers/{containerId}/instances")
        @Produces({"application/xml","application/json"})
        @Consumes({"application/xml","application/json"})
        public javax.ws.rs.core.Response getServerTemplateContainers​(@Context
                                                                     javax.ws.rs.core.HttpHeaders headers,
                                                                     @PathParam("serverTemplateId")
                                                                     String serverTemplateId,
                                                                     @PathParam("containerId")
                                                                     String containerId)
      • setRuntimeManagementService

        public void setRuntimeManagementService​(org.kie.server.controller.impl.service.RuntimeManagementServiceImpl runtimeManagementService)