com.accendia.iris.admin.interfaces
Interface IUserOperationReturnCodes


public interface IUserOperationReturnCodes

This interface contains the codes returned by the user operations of the admin command


Field Summary
static int SERVER_ERROR
          Return code indicating an unexpected server error.
static int SUCCESS
          Return code indicating operation succeeded.
static int USER_EXISTS
          Return code indicating the user already exists.
static int USER_NAME_TOO_LONG
          Return code indicating the supplied user name is too long.
static int WRONG_PASSWORD
          Return code indicating the supplied password is wrong.
static int WRONG_USER
          Return code indicating the user does not exist.
 

Field Detail

SUCCESS

static final int SUCCESS
Return code indicating operation succeeded.

See Also:
Constant Field Values

SERVER_ERROR

static final int SERVER_ERROR
Return code indicating an unexpected server error.

See Also:
Constant Field Values

WRONG_PASSWORD

static final int WRONG_PASSWORD
Return code indicating the supplied password is wrong.

See Also:
Constant Field Values

WRONG_USER

static final int WRONG_USER
Return code indicating the user does not exist.

See Also:
Constant Field Values

USER_EXISTS

static final int USER_EXISTS
Return code indicating the user already exists.

See Also:
Constant Field Values

USER_NAME_TOO_LONG

static final int USER_NAME_TOO_LONG
Return code indicating the supplied user name is too long.

See Also:
Constant Field Values