Enum CallbackKind

    • Enum Constant Detail

      • PRINCIPAL

        public static final CallbackKind PRINCIPAL
        Callbacks which select a user name or principal: client side NameCallback
      • CREDENTIAL

        public static final CallbackKind CREDENTIAL
        Callbacks which select a credential to use for authentication: PasswordCallback and CredentialCallback
      • CREDENTIAL_RESET

        public static final CallbackKind CREDENTIAL_RESET
        Callbacks which handle local credential-reset requests: PasswordResetCallback
      • PEER_PRINCIPAL

        public static final CallbackKind PEER_PRINCIPAL
        Callbacks which accept the peer's name or principal: server side NameCallback
      • PEER_CREDENTIAL

        public static final CallbackKind PEER_CREDENTIAL
        Callbacks which handle or verify the peer's credentials: EvidenceVerifyCallback
      • PARAMETERS

        public static final CallbackKind PARAMETERS
        Callbacks which select algorithm parameters to use for authentication: ParameterCallback
      • SERVER_TRUSTED_AUTHORITIES

        public static final CallbackKind SERVER_TRUSTED_AUTHORITIES
        Callbacks which accept the server's trusted authorities: TrustedAuthoritiesCallback
      • SSL

        public static final CallbackKind SSL
        Callbacks which deal with SSL configuration: SSLCallback
      • CHANNEL_BINDING

        public static final CallbackKind CHANNEL_BINDING
        Callbacks which configure channel binding options: ChannelBindingCallback
    • Method Detail

      • values

        public static CallbackKind[] 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 (CallbackKind c : CallbackKind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CallbackKind 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
      • isFull

        public static boolean isFull​(EnumSet<CallbackKind> set)
        Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.
        Parameters:
        set - the set
        Returns:
        true if the set is full, false otherwise
      • in

        public boolean in​(CallbackKind v1)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        v1 - the first instance
        Returns:
        true if one of the instances matches this one, false otherwise
      • in

        public boolean in​(CallbackKind v1,
                          CallbackKind v2)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        v1 - the first instance
        v2 - the second instance
        Returns:
        true if one of the instances matches this one, false otherwise
      • in

        public boolean in​(CallbackKind v1,
                          CallbackKind v2,
                          CallbackKind v3)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        v1 - the first instance
        v2 - the second instance
        v3 - the third instance
        Returns:
        true if one of the instances matches this one, false otherwise
      • in

        public boolean in​(CallbackKind... values)
        Determine whether this instance is equal to one of the given instances.
        Parameters:
        values - the possible values
        Returns:
        true if one of the instances matches this one, false otherwise