Interface KieCamelTestService
-
@Path("/kie-service") public interface KieCamelTestService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.kie.server.api.model.KieContainerResourceesCreateContainer(String id, org.kie.server.api.model.KieContainerResource resource)org.kie.server.api.model.KieContainerResourceListesListContainers()StringrunCommand(String command)StringrunOnExecServer(String command)org.kie.camel.container.api.model.PersonverifyAge(org.kie.camel.container.api.model.Person person)
-
-
-
Method Detail
-
verifyAge
@POST @Path("/age-verification") @Consumes("application/xml") @Produces("application/xml") org.kie.camel.container.api.model.Person verifyAge(org.kie.camel.container.api.model.Person person)
-
runCommand
@POST @Path("/run-command") @Consumes("text/plain") @Produces("text/plain") String runCommand(String command)
-
esListContainers
@POST @Path("/es-list-containers") @Produces("application/xml") org.kie.server.api.model.KieContainerResourceList esListContainers()
-
esCreateContainer
@POST @Path("/es-create-container") @Consumes("application/xml") @Produces("application/xml") org.kie.server.api.model.KieContainerResource esCreateContainer(@QueryParam("id") String id, org.kie.server.api.model.KieContainerResource resource)
-
-