Interface IExamplesServiceV2
-
- All Known Implementing Classes:
ExamplesServiceV2
@Path("/example") @Produces("application/json") public interface IExamplesServiceV2AnIExamplesServiceV2has methods to produce exampleOperations to be applied to the methods inIOperationServiceV2. Each example method path should be equal to the corresponding IOperationService method with /example as a prefix. Each example method should return a populatedOperationwhich can be used to call the corresponding IOperationService method.Ideally the example should work against any
Storewith any set of schemas and properties, however this may not be possible in all cases - but it should at least give a starting point for constructing a validOperation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Operationexecute()OperationexecuteChunked()
-
-
-
Method Detail
-
execute
@GET @Path("/graph/operations/execute") Operation execute() throws InstantiationException, IllegalAccessException
-
executeChunked
@GET @Path("/graph/operations/execute/chunked") Operation executeChunked() throws InstantiationException, IllegalAccessException
-
-