@Path(value="/graph/operations")
@Produces(value="application/json")
@Consumes(value="application/json")
public interface IOperationServiceV2
| Modifier and Type | Method and 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) |
@GET javax.ws.rs.core.Response getOperations()
@GET @Path(value="/details") javax.ws.rs.core.Response getOperationDetails()
@POST
@Path(value="/execute")
@Produces(value={"application/json","text/plain"})
javax.ws.rs.core.Response execute(Operation operation)
@POST
@Path(value="/execute/chunked")
@Produces(value={"application/json","text/plain"})
javax.ws.rs.core.Response executeChunked(Operation operation)
javax.ws.rs.core.Response executeChunkedChain(OperationChain opChain)
@GET
@Path(value="/{className}")
javax.ws.rs.core.Response operationDetails(@PathParam(value="className")
String className)
throws InstantiationException,
IllegalAccessException
@GET
@Path(value="/{className}/example")
javax.ws.rs.core.Response operationExample(@PathParam(value="className")
String className)
throws InstantiationException,
IllegalAccessException
@GET
@Path(value="/{className}/next")
javax.ws.rs.core.Response nextOperations(@PathParam(value="className")
String className)
Copyright © 2022. All rights reserved.