Package io.siddhi.service.api
Class SiddhiApi
- java.lang.Object
-
- io.siddhi.service.api.SiddhiApi
-
@Path("/siddhi") public class SiddhiApi extends Object
-
-
Constructor Summary
Constructors Constructor Description SiddhiApi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
siddhiArtifactDeployPost(String body)
javax.ws.rs.core.Response
siddhiArtifactUndeploySiddhiAppGet(String siddhiApp)
-
-
-
Method Detail
-
siddhiArtifactDeployPost
@POST @Path("/artifact/deploy") @Consumes("text/plain") @Produces("application/json") public javax.ws.rs.core.Response siddhiArtifactDeployPost(String body) throws NotFoundException
- Throws:
NotFoundException
-
siddhiArtifactUndeploySiddhiAppGet
@GET @Path("/artifact/undeploy/{siddhiApp}") @Produces("application/json") public javax.ws.rs.core.Response siddhiArtifactUndeploySiddhiAppGet(@PathParam("siddhiApp") String siddhiApp) throws NotFoundException
- Throws:
NotFoundException
-
-