public final class TransportGuarantee
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
CONFIDENTIAL
Application requires that the data be transmitted in a fashion that
prevents other entities from observing the contents of the transmission.
|
static java.lang.String |
INTEGRAL
Application requires that the data sent between the client and
server be sent in such a way that it can't be changed in transit.
|
static java.lang.String |
NONE
Application does not require any transport guarantees.
|
| Modifier | Constructor and Description |
|---|---|
private |
TransportGuarantee()
Forbidden constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
valueOf(java.lang.String s)
Returns string representing correct
TransportGuarantee value. |
public static final java.lang.String NONE
public static final java.lang.String INTEGRAL
public static final java.lang.String CONFIDENTIAL
public static java.lang.String valueOf(java.lang.String s)
TransportGuarantee value.s - string to convert.java.lang.IllegalArgumentException - if s is null or contains unknown value.