Interface IExamplesServiceV2
-
- All Known Implementing Classes:
ExamplesServiceV2
@Path("/example") @Produces("application/json") public interface IExamplesServiceV2
AnIExamplesServiceV2
has methods to produce exampleOperation
s 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 populatedOperation
which can be used to call the corresponding IOperationService method.Ideally the example should work against any
Store
with 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 Operation
execute()
Operation
executeChunked()
-
-
-
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
-
-