com.threerings.presents.data
Interface AuthCodes


public interface AuthCodes

Basic authentication response codes.


Field Summary
static String INVALID_PASSWORD
          A code indicating that the supplied password was invalid.
static String NO_SUCH_USER
          A code indicating that no user exists with the specified username.
static String SERVER_ERROR
          A code indicating that an internal server error occurred while trying to log the user on.
static String SERVER_UNAVAILABLE
          A code indicating that the server is not available at the moment.
static String TRYING_NEXT_PORT
          A code indicating that we failed to connect to the server on a port and are trying the next port in the list.
 

Field Detail

NO_SUCH_USER

static final String NO_SUCH_USER
A code indicating that no user exists with the specified username.

See Also:
Constant Field Values

INVALID_PASSWORD

static final String INVALID_PASSWORD
A code indicating that the supplied password was invalid.

See Also:
Constant Field Values

SERVER_ERROR

static final String SERVER_ERROR
A code indicating that an internal server error occurred while trying to log the user on.

See Also:
Constant Field Values

SERVER_UNAVAILABLE

static final String SERVER_UNAVAILABLE
A code indicating that the server is not available at the moment.

See Also:
Constant Field Values

TRYING_NEXT_PORT

static final String TRYING_NEXT_PORT
A code indicating that we failed to connect to the server on a port and are trying the next port in the list.

See Also:
Constant Field Values