java.lang.Object
java.lang.Enum<HandlerTypeEnum>
org.wildfly.extension.picketlink.federation.model.handlers.HandlerTypeEnum
All Implemented Interfaces:
Serializable, Comparable<HandlerTypeEnum>

public enum HandlerTypeEnum extends Enum<HandlerTypeEnum>

Enum defining alias for each supported built-in org.picketlink.idm.credential.handler.CredentialHandler provided by PicketLink. The alias is used in the configuration without using the full qualified name of a type.

Author:
Pedro Igor
  • Enum Constant Details

    • SAML2_ISSUER_TRUST_HANDLER

      public static final HandlerTypeEnum SAML2_ISSUER_TRUST_HANDLER
    • SAML2_AUTHENTICATION_HANDLER

      public static final HandlerTypeEnum SAML2_AUTHENTICATION_HANDLER
    • ROLES_GENERATION_HANDLER

      public static final HandlerTypeEnum ROLES_GENERATION_HANDLER
    • SAML2_ATTRIBUTE_HANDLER

      public static final HandlerTypeEnum SAML2_ATTRIBUTE_HANDLER
    • SAML2_ENCRYPTION_HANDLER

      public static final HandlerTypeEnum SAML2_ENCRYPTION_HANDLER
    • SAML2_IN_RESPONSE_VERIFICATION_HANDLER

      public static final HandlerTypeEnum SAML2_IN_RESPONSE_VERIFICATION_HANDLER
    • SAML2_LOGOUT_HANDLER

      public static final HandlerTypeEnum SAML2_LOGOUT_HANDLER
    • SAML2_SIGNATURE_GENERATION_HANDLER

      public static final HandlerTypeEnum SAML2_SIGNATURE_GENERATION_HANDLER
    • SAML2_SIGNATURE_VALIDATION_HANDLER

      public static final HandlerTypeEnum SAML2_SIGNATURE_VALIDATION_HANDLER
  • Method Details

    • values

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

      public static HandlerTypeEnum valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • forType

      public static String forType(String alias)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<HandlerTypeEnum>