com.tinkerpop.rexster.protocol.msg.MessageFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-protocol Show documentation
Show all versions of rexster-protocol Show documentation
RexPro is a binary protocol for Rexster graph server.
package com.tinkerpop.rexster.protocol.msg;
/**
* Flags for the various messages.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
public class MessageFlag {
public static final byte SCRIPT_RESPONSE_COMPLETE_MESSAGE = 0;
public static final byte ERROR_MESSAGE_VALIDATION = 0;
public static final byte ERROR_INVALID_SESSION = 1;
public static final byte ERROR_SCRIPT_FAILURE = 2;
public static final byte ERROR_AUTHENTICATION_FAILURE = 3;
public static final byte SCRIPT_REQUEST_IN_SESSION = 0;
public static final byte SCRIPT_REQUEST_NO_SESSION = 1;
public static final byte SESSION_REQUEST_NEW_SESSION = 0;
public static final byte SESSION_REQUEST_KILL_SESSION = 1;
public static final byte SESSION_RESPONSE_NO_FLAG = 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy