Interface IOperationServiceV2
-
- All Known Implementing Classes:
OperationServiceV2
@Path("/graph/operations") @Produces("application/json") @Consumes("application/json") public interface IOperationServiceV2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responseexecute(Operation operation)javax.ws.rs.core.ResponseexecuteChunked(Operation operation)javax.ws.rs.core.ResponseexecuteChunkedChain(OperationChain opChain)javax.ws.rs.core.ResponsegetOperationDetails()javax.ws.rs.core.ResponsegetOperations()javax.ws.rs.core.ResponsenextOperations(String className)javax.ws.rs.core.ResponseoperationDetails(String className)javax.ws.rs.core.ResponseoperationExample(String className)
-
-
-
Method Detail
-
getOperations
@GET javax.ws.rs.core.Response getOperations()
-
getOperationDetails
@GET @Path("/details") javax.ws.rs.core.Response getOperationDetails()
-
execute
@POST @Path("/execute") @Produces({"application/json","text/plain"}) javax.ws.rs.core.Response execute(Operation operation)
-
executeChunked
@POST @Path("/execute/chunked") @Produces({"application/json","text/plain"}) javax.ws.rs.core.Response executeChunked(Operation operation)
-
executeChunkedChain
javax.ws.rs.core.Response executeChunkedChain(OperationChain opChain)
-
operationDetails
@GET @Path("/{className}") javax.ws.rs.core.Response operationDetails(@PathParam("className") String className) throws InstantiationException, IllegalAccessException
-
operationExample
@GET @Path("/{className}/example") javax.ws.rs.core.Response operationExample(@PathParam("className") String className) throws InstantiationException, IllegalAccessException
-
nextOperations
@GET @Path("/{className}/next") javax.ws.rs.core.Response nextOperations(@PathParam("className") String className)
-
-