Enum GSSAPIChannelBindingType

java.lang.Object
java.lang.Enum<GSSAPIChannelBindingType>
com.unboundid.ldap.sdk.GSSAPIChannelBindingType
All Implemented Interfaces:
Serializable, Comparable<GSSAPIChannelBindingType>, java.lang.constant.Constable

This enum defines the types of channel binding that may be used in conjunction with the GSSAPI SASL mechanism. Note that channel binding support is dependent upon the underlying JVM and may not be available in all cases.
See Also:
  • Enum Constant Details

  • Method Details

    • values

      public static GSSAPIChannelBindingType[] 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 GSSAPIChannelBindingType 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
    • getName

      Retrieves the name for this GSSAPI channel binding type.
      Returns:
      The name for this GSSAPI channel binding type.
    • forName

      Retrieves the GSSAPI channel binding type with the specified name.
      Parameters:
      name - The name of the GSSAPI channel binding type to retrieve. It must not be null.
      Returns:
      The requested channel binding type, or null if no channel binding type is defined with the provided name.