|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jboss.ws.api.annotation.TransportGuarantee
public final class TransportGuarantee
The transportGuarantee specifies that the communication between client and server should be NONE, INTEGRAL, or CONFIDENTIAL. NONE means that the application does not require any transport guarantees. A value of INTEGRAL means that the 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. CONFIDENTIAL means that the application requires that the data be transmitted in a fashion that prevents other entities from observing the contents of the transmission. In most cases, the presence of the INTEGRAL or CONFIDENTIAL flag will indicate that the use of SSL is required.
Field Summary | |
---|---|
static String |
CONFIDENTIAL
Application requires that the data be transmitted in a fashion that prevents other entities from observing the contents of the transmission. |
static 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 String |
NONE
Application does not require any transport guarantees. |
Method Summary | |
---|---|
static String |
valueOf(String s)
Returns string representing correct TransportGuarantee value. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String NONE
public static final String INTEGRAL
public static final String CONFIDENTIAL
Method Detail |
---|
public static String valueOf(String s)
TransportGuarantee
value.
s
- string to convert.
IllegalArgumentException
- if s is null or contains unknown value.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |