Class StateKey
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.server.handler.StateKey
 
- 
 public final class StateKey extends Object Keys used in the various handlers to store state in the pipeline.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
 
- 
- 
Field SummaryFields Modifier and Type Field Description static io.netty.util.AttributeKey<AuthenticatedUser>AUTHENTICATED_USERThe key for the currentAuthenticatedUser.static io.netty.util.AttributeKey<Authenticator.SaslNegotiator>NEGOTIATORThe key for the current SASL negotiator.static io.netty.util.AttributeKey<RequestMessage>REQUEST_MESSAGEThe key for the current request.static io.netty.util.AttributeKey<MessageSerializer<?>>SERIALIZERThe key for the current serializer requested by the client.static io.netty.util.AttributeKey<Session>SESSIONThe key for the currentSessionobject.static io.netty.util.AttributeKey<Boolean>USE_BINARYThe key to indicate if the serializer should use its binary format.
 
- 
- 
- 
Field Detail- 
SERIALIZERpublic static final io.netty.util.AttributeKey<MessageSerializer<?>> SERIALIZER The key for the current serializer requested by the client.
 - 
USE_BINARYpublic static final io.netty.util.AttributeKey<Boolean> USE_BINARY The key to indicate if the serializer should use its binary format.
 - 
SESSIONpublic static final io.netty.util.AttributeKey<Session> SESSION The key for the currentSessionobject.
 - 
NEGOTIATORpublic static final io.netty.util.AttributeKey<Authenticator.SaslNegotiator> NEGOTIATOR The key for the current SASL negotiator.
 - 
REQUEST_MESSAGEpublic static final io.netty.util.AttributeKey<RequestMessage> REQUEST_MESSAGE The key for the current request.
 - 
AUTHENTICATED_USERpublic static final io.netty.util.AttributeKey<AuthenticatedUser> AUTHENTICATED_USER The key for the currentAuthenticatedUser.
 
- 
 
-