Package org.apache.tinkerpop.gremlin
Annotation Interface GraphProvider.Descriptor
- Enclosing interface:
- GraphProvider
An annotation to be applied to a
GraphProvider implementation that provides additional information
about its intentions. The Descriptor is required by those GraphProvider implementations
that will be assigned to test suites that use
TraversalEngine.Type.COMPUTER.-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionClass<? extends GraphComputer>TheGraphComputerimplementation that theGraphProviderwill use when it constructs aTraversalwithGraphProvider.traversal(Graph)orGraphProvider.traversal(Graph, TraversalStrategy[]).
-
Element Details
-
computer
Class<? extends GraphComputer> computerTheGraphComputerimplementation that theGraphProviderwill use when it constructs aTraversalwithGraphProvider.traversal(Graph)orGraphProvider.traversal(Graph, TraversalStrategy[]). This value should be null if aGraphComputeris not being used.
-