Class Settings.AuthorizationSettings
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.server.Settings.AuthorizationSettings
-
- Enclosing class:
- Settings
public static class Settings.AuthorizationSettings extends Object
Settings for theAuthenticator
implementation.
-
-
Field Summary
Fields Modifier and Type Field Description String
authorizer
The fully qualified class name of theAuthorizer
implementation.Map<String,Object>
config
AMap
containingAuthorizer
specific configurations.
-
Constructor Summary
Constructors Constructor Description AuthorizationSettings()
-
-
-
Field Detail
-
authorizer
public String authorizer
The fully qualified class name of theAuthorizer
implementation. This class name will be used to load the implementation from the classpath. Defaults to null when not specified.
-
config
public Map<String,Object> config
AMap
containingAuthorizer
specific configurations. Consult theAuthorizer
implementation for specifics on what configurations are expected.
-
-