public enum EPPOrgRoleStatus extends java.lang.Enum<EPPOrgRoleStatus> implements java.io.Serializable, java.lang.Cloneable
ok
- This is the normal status value for an role that has no
pending operations or prohibitions. This value is set and removed by the
server as other status values are added or removed.linked
- The role of an organization object has at least one
active association with another object. The "linked" status is not explicitly
set by the client. Servers SHOULD provide services to determine existing
object associations.clientLinkProhibited
or
serverLinkProhibited
- Requests to add new links to the
organization MUST be rejected.Enum Constant and Description |
---|
clientLinkProhibited |
linked |
ok |
serverLinkProhibited |
Modifier and Type | Method and Description |
---|---|
static EPPOrgRoleStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EPPOrgRoleStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPPOrgRoleStatus ok
public static final EPPOrgRoleStatus linked
public static final EPPOrgRoleStatus clientLinkProhibited
public static final EPPOrgRoleStatus serverLinkProhibited
public static EPPOrgRoleStatus[] values()
for (EPPOrgRoleStatus c : EPPOrgRoleStatus.values()) System.out.println(c);
public static EPPOrgRoleStatus 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