Class Settings.ProcessorSettings
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.server.Settings.ProcessorSettings
-
- Enclosing class:
- Settings
public static class Settings.ProcessorSettings extends Object
Custom configurations for anyOpProcessor
implementations. These settings will not be relevant unless the referencedOpProcessor
is actually loaded viaServiceLoader
.
-
-
Field Summary
Fields Modifier and Type Field Description String
className
The fully qualified class name of anOpProcessor
implementation.Map<String,Object>
config
A set of configurations as expected by theOpProcessor
.
-
Constructor Summary
Constructors Constructor Description ProcessorSettings()
-
-
-
Field Detail
-
className
public String className
The fully qualified class name of anOpProcessor
implementation.
-
config
public Map<String,Object> config
A set of configurations as expected by theOpProcessor
. Consult the documentation of theOpProcessor
for information on what these configurations should be.
-
-