public static enum ServletSecurity.TransportGuarantee extends java.lang.Enum<ServletSecurity.TransportGuarantee>
Enum Constant | Description |
---|---|
CONFIDENTIAL |
The container MUST encrypt user data during transport
|
NONE |
User data must not be encrypted by the container during transport
|
Modifier and Type | Method | Description |
---|---|---|
static ServletSecurity.TransportGuarantee |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ServletSecurity.TransportGuarantee[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServletSecurity.TransportGuarantee NONE
public static final ServletSecurity.TransportGuarantee CONFIDENTIAL
public static ServletSecurity.TransportGuarantee[] values()
for (ServletSecurity.TransportGuarantee c : ServletSecurity.TransportGuarantee.values()) System.out.println(c);
public static ServletSecurity.TransportGuarantee valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2000-2016 The Apache Software Foundation. All Rights Reserved.