Enum Class RequestType

java.lang.Object
java.lang.Enum<RequestType>
org.projecthusky.xua.communication.xua.RequestType
All Implemented Interfaces:
Serializable, Comparable<RequestType>, Constable

public enum RequestType extends Enum<RequestType>
Enumeration for the WS-Trust Request type.
Enummerierung für den WS-Trust Request Typ
  • Enum Constant Details

    • WST_CANCEL

      public static final RequestType WST_CANCEL
    • WST_ISSUE

      public static final RequestType WST_ISSUE
    • WST_RENEW

      public static final RequestType WST_RENEW
    • WST_VALIDATE

      public static final RequestType WST_VALIDATE
  • Method Details

    • values

      public static RequestType[] 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 RequestType 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
    • getEnum

      public static RequestType getEnum(String aCode)
      Method to get the correct enum value by string.
      Methode um den korrekte enum Wert zum String zu erhalten.
      Parameters:
      aCode -
      The enum as string.
      Der enum wert als String.
      Returns:
      The enum value corresponding to the input string else null.
      Der enum Wert korrespondierend zum Eingabe String und sonst null.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<RequestType>
      See Also: