Enum Class Port.Security

java.lang.Object
java.lang.Enum<Port.Security>
org.kiwiproject.registry.model.Port.Security
All Implemented Interfaces:
Serializable, Comparable<Port.Security>, Constable
Enclosing class:
Port

public static enum Port.Security extends Enum<Port.Security>
Enum defining whether the port is secure or not.
  • Enum Constant Details

    • SECURE

      public static final Port.Security SECURE
      Secure; HTTPS.
    • NOT_SECURE

      public static final Port.Security NOT_SECURE
      Not secure; HTTP.
  • Method Details

    • values

      public static Port.Security[] values()
      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 Port.Security valueOf(String name)
      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
    • fromScheme

      public static Port.Security fromScheme(String schemeToCheck)
      Return Port.Security value for the given scheme, using a case-insensitive comparison. If given some value other than HTTP or HTTPS, returns SECURE.
      Parameters:
      schemeToCheck - either HTTP or HTTPS, case-insensitive
      Returns:
      the Port.Security value
    • getScheme

      public String getScheme()