Enum ApplicationProtocolConfig.SelectedListenerFailureBehavior

java.lang.Object
java.lang.Enum<ApplicationProtocolConfig.SelectedListenerFailureBehavior>
io.netty.handler.ssl.ApplicationProtocolConfig.SelectedListenerFailureBehavior
All Implemented Interfaces:
Serializable, Comparable<ApplicationProtocolConfig.SelectedListenerFailureBehavior>, java.lang.constant.Constable
Enclosing class:
ApplicationProtocolConfig

public static enum ApplicationProtocolConfig.SelectedListenerFailureBehavior extends Enum<ApplicationProtocolConfig.SelectedListenerFailureBehavior>
Defines the most common behaviors for the peer which is notified of the selected protocol.
  • Enum Constant Details

    • ACCEPT

      If the peer who is notified what protocol was selected determines the selection was not matched, or the peer didn't advertise support for the TLS extension then the handshake will continue and the application protocol is assumed to be accepted.
    • FATAL_ALERT

      If the peer who is notified what protocol was selected determines the selection was not matched, or the peer didn't advertise support for the TLS extension then the handshake will be failed with a fatal alert.
    • CHOOSE_MY_LAST_PROTOCOL

      public static final ApplicationProtocolConfig.SelectedListenerFailureBehavior CHOOSE_MY_LAST_PROTOCOL
      If the peer who is notified what protocol was selected determines the selection was not matched, or the peer didn't advertise support for the TLS extension then the handshake will continue assuming the last protocol supported by this peer is used. This is used in cases where a "best effort" is desired to talk even if there is no matching protocol, and the assumption is the "most general" fallback protocol is typically listed last.
  • Constructor Details

    • SelectedListenerFailureBehavior

      private SelectedListenerFailureBehavior()
  • Method Details

    • 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

      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