Interface GremlinPlugin
- All Known Implementing Classes:
AbstractGremlinPlugin,CoreGremlinPlugin,CredentialGraphGremlinPlugin,GremlinLangPlugin,GremlinServerGremlinPlugin,GroovyCompilerGremlinPlugin,ImportGremlinPlugin,ScriptFileGremlinPlugin,SugarGremlinPlugin,TinkerGraphGremlinPlugin,VariableResolverPlugin
public interface GremlinPlugin
A plugin interface that is used by the
GremlinScriptEngineManager to configure special Customizer
instances that will alter the features of any GremlinScriptEngine created by the manager itself.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
Method Summary
Modifier and TypeMethodDescriptiondefault Optional<Customizer[]>Gets the list of allCustomizerimplementations to assign to a newGremlinScriptEngine.getCustomizers(String scriptEngineName) Gets the list ofCustomizerimplementations to assign to a newGremlinScriptEngine.getName()The name of the module.default booleanSome modules may require a restart of the plugin host for the classloader to pick up the features.
-
Method Details
-
getName
String getName()The name of the module. This name should be unique (use a namespaced approach) as naming clashes will prevent proper module operations. Modules developed by TinkerPop will be prefixed with "tinkerpop." For example, TinkerPop's implementation of Spark would be named "tinkerpop.spark". If Facebook were to do their own implementation the implementation might be called "facebook.spark". -
requireRestart
default boolean requireRestart()Some modules may require a restart of the plugin host for the classloader to pick up the features. This is typically true of modules that rely onClass.forName()to dynamically instantiate classes from the root classloader (e.g. JDBC drivers that instantiate via @{code DriverManager}). -
getCustomizers
Gets the list of allCustomizerimplementations to assign to a newGremlinScriptEngine. This is the same as doinggetCustomizers(null). -
getCustomizers
Gets the list ofCustomizerimplementations to assign to a newGremlinScriptEngine. The implementation should filter the returnedCustomizersaccording to the supplied name of the Gremlin-enabledScriptEngine. By providing a filter,GremlinModuledevelopers can have the ability to target specificScriptEngines.- Parameters:
scriptEngineName- The name of theScriptEngineor null to get all the availableCustomizers
-