public enum InvalidRecipientResponseCode extends java.lang.Enum<InvalidRecipientResponseCode>
| Enum Constant and Description |
|---|
CANNOT_OBTAIN_TOKEN_FROM_STS
Indicates that there was a problem obtaining a security token from the token server.
|
RECIPIENT_ORGANIZATION_NOT_FEDERATED
Indicates that a sharing relationship is not available with the organization specified in the recipient's SMTP e-mail address.
|
SYSTEM_POLICY_BLOCKS_SHARING_WITH_THIS_RECIPIENT
Indicates that the system administrator has set a system policy that blocks sharing with the specified recipient.
|
| Modifier and Type | Method and Description |
|---|---|
static InvalidRecipientResponseCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InvalidRecipientResponseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidRecipientResponseCode RECIPIENT_ORGANIZATION_NOT_FEDERATED
public static final InvalidRecipientResponseCode CANNOT_OBTAIN_TOKEN_FROM_STS
public static final InvalidRecipientResponseCode SYSTEM_POLICY_BLOCKS_SHARING_WITH_THIS_RECIPIENT
public static InvalidRecipientResponseCode[] values()
for (InvalidRecipientResponseCode c : InvalidRecipientResponseCode.values()) System.out.println(c);
public static InvalidRecipientResponseCode 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