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.Response
execute(Operation operation)
javax.ws.rs.core.Response
executeChunked(Operation operation)
javax.ws.rs.core.Response
executeChunkedChain(OperationChain opChain)
javax.ws.rs.core.Response
getOperationDetails()
javax.ws.rs.core.Response
getOperations()
javax.ws.rs.core.Response
nextOperations(String className)
javax.ws.rs.core.Response
operationDetails(String className)
javax.ws.rs.core.Response
operationExample(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)
-
-