Interface KieCamelTestService


  • @Path("/kie-service")
    public interface KieCamelTestService
    • 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)
      • runOnExecServer

        @POST
        @Path("/es-run")
        @Consumes("text/plain")
        @Produces("text/plain")
        String runOnExecServer​(String command)