Enum Class AgentStatus

java.lang.Object
java.lang.Enum<AgentStatus>
com.digicert.validation.mpic.api.AgentStatus
All Implemented Interfaces:
Serializable, Comparable<AgentStatus>, Constable

public enum AgentStatus extends Enum<AgentStatus>
Enum representing the various statuses that can be returned by the MPIC agent. These statuses indicate the result of DNS lookups and file validations.
  • Enum Constant Details

    • DNS_LOOKUP_SUCCESS

      public static final AgentStatus DNS_LOOKUP_SUCCESS
    • DNS_LOOKUP_BAD_REQUEST

      public static final AgentStatus DNS_LOOKUP_BAD_REQUEST
    • DNS_LOOKUP_RECORD_NOT_FOUND

      public static final AgentStatus DNS_LOOKUP_RECORD_NOT_FOUND
    • DNS_LOOKUP_TEXT_PARSE_EXCEPTION

      public static final AgentStatus DNS_LOOKUP_TEXT_PARSE_EXCEPTION
    • DNS_LOOKUP_UNKNOWN_HOST_EXCEPTION

      public static final AgentStatus DNS_LOOKUP_UNKNOWN_HOST_EXCEPTION
    • DNS_LOOKUP_DOMAIN_NOT_FOUND

      public static final AgentStatus DNS_LOOKUP_DOMAIN_NOT_FOUND
    • DNS_LOOKUP_IO_EXCEPTION

      public static final AgentStatus DNS_LOOKUP_IO_EXCEPTION
    • DNS_LOOKUP_TIMEOUT

      public static final AgentStatus DNS_LOOKUP_TIMEOUT
    • FILE_SUCCESS

      public static final AgentStatus FILE_SUCCESS
    • FILE_BAD_REQUEST

      public static final AgentStatus FILE_BAD_REQUEST
    • FILE_BAD_RESPONSE

      public static final AgentStatus FILE_BAD_RESPONSE
    • FILE_CLIENT_ERROR

      public static final AgentStatus FILE_CLIENT_ERROR
    • FILE_NOT_FOUND

      public static final AgentStatus FILE_NOT_FOUND
    • FILE_SERVER_ERROR

      public static final AgentStatus FILE_SERVER_ERROR
    • FILE_REQUEST_TIMEOUT

      public static final AgentStatus FILE_REQUEST_TIMEOUT
    • FILE_TOO_LARGE

      public static final AgentStatus FILE_TOO_LARGE
    • INTERNAL_SERVER_ERROR

      public static final AgentStatus INTERNAL_SERVER_ERROR
  • Constructor Details

    • AgentStatus

      private AgentStatus()
  • Method Details

    • values

      public static AgentStatus[] 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 AgentStatus 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