| Enum Constant and Description |
|---|
INTERNAL_SERVER_ERROR
There is an internal server error.
|
INVALID_DOMAIN
The requested domain is not valid.
|
INVALID_REQUEST
The request is invalid.
|
INVALID_SETTING
A specified setting is invalid.
|
INVALID_USER
The user that was passed in the request is invalid.
|
NO_ERROR
There was no error.
|
NOT_FEDERATED
The organization is not federated.
|
REDIRECT_ADDRESS
The caller must follow the e-mail address redirection that was returned by Autodiscover.
|
REDIRECT_URL
The caller must follow the URL redirection that was returned by Autodiscover.
|
SERVER_BUSY
The server is too busy to process the request.
|
SETTING_IS_NOT_AVAILABLE
A specified setting is not available.
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode NO_ERROR
public static final ErrorCode REDIRECT_ADDRESS
public static final ErrorCode REDIRECT_URL
public static final ErrorCode INVALID_USER
public static final ErrorCode INVALID_REQUEST
public static final ErrorCode INVALID_SETTING
public static final ErrorCode SETTING_IS_NOT_AVAILABLE
public static final ErrorCode SERVER_BUSY
public static final ErrorCode INVALID_DOMAIN
public static final ErrorCode NOT_FEDERATED
public static final ErrorCode INTERNAL_SERVER_ERROR
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null