Enum Class ETLSConfigurationMode_2018_10

java.lang.Object
java.lang.Enum<ETLSConfigurationMode_2018_10>
com.helger.http.tls.ETLSConfigurationMode_2018_10
All Implemented Interfaces:
com.helger.base.id.IHasID<String>, ITLSConfigurationMode, Serializable, Comparable<ETLSConfigurationMode_2018_10>, Constable

@Deprecated(forRemoval=true, since="10.5.0") public enum ETLSConfigurationMode_2018_10 extends Enum<ETLSConfigurationMode_2018_10> implements com.helger.base.id.IHasID<String>, ITLSConfigurationMode
Deprecated, for removal: This API element is subject to removal in a future version.
TLS cipher suite configuration modes according to https://wiki.mozilla.org/Security/Server_Side_TLS from 2018-10-09

See the tool MainMapCipherSuites for the cipher suite name mapping

Since:
9.0.5
Author:
Philip Helger
  • Enum Constant Details

    • MODERN

      @Deprecated public static final ETLSConfigurationMode_2018_10 MODERN
      Deprecated.
      For services that don't need backward compatibility, the parameters below provide a higher level of security. This configuration is compatible with Firefox 27, Chrome 30, IE 11 on Windows 7, Edge, Opera 17, Safari 9, Android 5.0, and Java 8.
    • INTERMEDIATE

      @Deprecated public static final ETLSConfigurationMode_2018_10 INTERMEDIATE
      Deprecated.
      For services that don't need compatibility with legacy clients (mostly WinXP), but still need to support a wide range of clients, this configuration is recommended. It is is compatible with Firefox 1, Chrome 1, IE 7, Opera 5 and Safari 1.
    • OLD

      @Deprecated public static final ETLSConfigurationMode_2018_10 OLD
      Deprecated.
      This is the old ciphersuite that works with all clients back to Windows XP/IE6. It should be used as a last resort only.
  • Method Details

    • values

      public static ETLSConfigurationMode_2018_10[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ETLSConfigurationMode_2018_10 valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getID

      @Deprecated @Nonempty public @NonNull @Nonempty String getID()
      Deprecated.
      Specified by:
      getID in interface com.helger.base.id.IHasID<String>
    • getAllCipherSuites

      @Deprecated @ReturnsMutableCopy public @NonNull com.helger.collection.commons.ICommonsList<String> getAllCipherSuites()
      Deprecated.
      Specified by:
      getAllCipherSuites in interface ITLSConfigurationMode
      Returns:
      All cipher suites in the correct order. May not be null.
    • getAllCipherSuitesAsArray

      @Deprecated @ReturnsMutableCopy public @NonNull String[] getAllCipherSuitesAsArray()
      Deprecated.
      Specified by:
      getAllCipherSuitesAsArray in interface ITLSConfigurationMode
      Returns:
      All cipher suites in the correct order. May be null if no cipher suite is defined.
    • getAllTLSVersions

      @Deprecated @ReturnsMutableCopy public @NonNull com.helger.collection.commons.ICommonsList<ETLSVersion> getAllTLSVersions()
      Deprecated.
      Specified by:
      getAllTLSVersions in interface ITLSConfigurationMode
      Returns:
      A list of supported TLS versions in the correct order. May not be null.
    • getAllTLSVersionIDs

      @Deprecated @ReturnsMutableCopy public @NonNull com.helger.collection.commons.ICommonsList<String> getAllTLSVersionIDs()
      Deprecated.
      Specified by:
      getAllTLSVersionIDs in interface ITLSConfigurationMode
      Returns:
      A list of the IDs of the supported TLS versions in the correct order. May not be null.
    • getAllTLSVersionIDsAsArray

      @Deprecated @ReturnsMutableCopy public @NonNull String[] getAllTLSVersionIDsAsArray()
      Deprecated.
      Specified by:
      getAllTLSVersionIDsAsArray in interface ITLSConfigurationMode
      Returns:
      A list of the IDs of the supported TLS versions in the correct order. May be null if no TLS versions are defined.
    • getFromIDOrNull

      @Deprecated public static @Nullable ETLSConfigurationMode_2018_10 getFromIDOrNull(@Nullable String sID)
      Deprecated.
      Get the enum value matching the provided ID.
      Parameters:
      sID - The ID to search. May be null.
      Returns:
      null if no matching enum value was found.