Enum Class EPPOrgStatus

java.lang.Object
java.lang.Enum<EPPOrgStatus>
com.verisign.epp.codec.org.EPPOrgStatus
All Implemented Interfaces:
Serializable, Cloneable, Comparable<EPPOrgStatus>, Constable

public enum EPPOrgStatus extends Enum<EPPOrgStatus> implements Serializable, Cloneable
Statuses of the organization, with one of the following values:
  • ok - This is the normal status value for an object that has no pending operations or prohibitions. This value is set and removed by the server as other status values are added or removed.
  • hold - Organization transform commands and new links MUST be rejected.
  • terminated - The organization which has been terminated MUST NOT be linked. Organization transform commands and new links MUST be rejected.
  • linked - The 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.
  • clientUpdateProhibited or serverUpdateProhibited - Requests to update the object (other than to remove this status) MUST be rejected.
  • clientDeleteProhibited or serverDeleteProbited - Requests to delete the object MUST be rejected.
  • Enum Constant Details

    • ok

      public static final EPPOrgStatus ok
    • hold

      public static final EPPOrgStatus hold
    • terminated

      public static final EPPOrgStatus terminated
    • linked

      public static final EPPOrgStatus linked
    • clientLinkProhibited

      public static final EPPOrgStatus clientLinkProhibited
    • serverLinkProhibited

      public static final EPPOrgStatus serverLinkProhibited
    • clientUpdateProhibited

      public static final EPPOrgStatus clientUpdateProhibited
    • serverUpdateProhibited

      public static final EPPOrgStatus serverUpdateProhibited
    • clientDeleteProhibited

      public static final EPPOrgStatus clientDeleteProhibited
    • serverDeleteProbited

      public static final EPPOrgStatus serverDeleteProbited
  • Method Details

    • values

      public static EPPOrgStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EPPOrgStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null