Enum StrictTransportSecurityProvider.Parameters
- java.lang.Object
-
- java.lang.Enum<StrictTransportSecurityProvider.Parameters>
-
- org.camunda.bpm.webapp.impl.security.filter.headersec.provider.impl.StrictTransportSecurityProvider.Parameters
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StrictTransportSecurityProvider.Parameters>
- Enclosing class:
- StrictTransportSecurityProvider
public static enum StrictTransportSecurityProvider.Parameters extends java.lang.Enum<StrictTransportSecurityProvider.Parameters>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLED
INCLUDE_SUBDOMAINS_DISABLED
MAX_AGE
VALUE
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
name
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
static StrictTransportSecurityProvider.Parameters
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StrictTransportSecurityProvider.Parameters[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED
public static final StrictTransportSecurityProvider.Parameters DISABLED
-
VALUE
public static final StrictTransportSecurityProvider.Parameters VALUE
-
MAX_AGE
public static final StrictTransportSecurityProvider.Parameters MAX_AGE
-
INCLUDE_SUBDOMAINS_DISABLED
public static final StrictTransportSecurityProvider.Parameters INCLUDE_SUBDOMAINS_DISABLED
-
-
Method Detail
-
values
public static StrictTransportSecurityProvider.Parameters[] 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 (StrictTransportSecurityProvider.Parameters c : StrictTransportSecurityProvider.Parameters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StrictTransportSecurityProvider.Parameters valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
-
-