Enum 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 Detail

      • 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 Detail

      • values

        public static HandlerTypeEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (HandlerTypeEnum c : HandlerTypeEnum.values())
            System.out.println(c);
        
        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