|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jboss.wsf.spi.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 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. |
Method Summary | |
---|---|
static java.lang.String |
valueOf(java.lang.String s)
Returns string representing correct transport guarantee value. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String NONE
public static final java.lang.String INTEGRAL
public static final java.lang.String CONFIDENTIAL
Method Detail |
---|
public static java.lang.String valueOf(java.lang.String s)
s
- string to convert, both lowercased and uppercased values are accepted
java.lang.IllegalArgumentException
- if s is null or it contains unknown value.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |