@Path(value="/kie-service")
public interface KieCamelTestService
Modifier and Type | Method and Description |
---|---|
org.kie.server.api.model.KieContainerResource |
esCreateContainer(String id,
org.kie.server.api.model.KieContainerResource resource) |
org.kie.server.api.model.KieContainerResourceList |
esListContainers() |
String |
runCommand(String command) |
String |
runOnExecServer(String command) |
Person |
verifyAge(Person person) |
@POST @Path(value="/age-verification") @Consumes(value="application/xml") @Produces(value="application/xml") Person verifyAge(Person person)
@POST @Path(value="/run-command") @Consumes(value="text/plain") @Produces(value="text/plain") String runCommand(String command)
@POST @Path(value="/es-list-containers") @Produces(value="application/xml") org.kie.server.api.model.KieContainerResourceList esListContainers()
@POST @Path(value="/es-create-container") @Consumes(value="application/xml") @Produces(value="application/xml") org.kie.server.api.model.KieContainerResource esCreateContainer(@QueryParam(value="id") String id, org.kie.server.api.model.KieContainerResource resource)
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.