Class TransportGuarantee

java.lang.Object
org.jboss.ws.api.annotation.TransportGuarantee

public final class TransportGuarantee extends Object
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.
Author:
Richard Opalka
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Application requires that the data be transmitted in a fashion that prevents other entities from observing the contents of the transmission.
    static final String
    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 final String
    Application does not require any transport guarantees.
  • Method Summary

    Modifier and Type
    Method
    Description
    static String
    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 Details

    • NONE

      public static final String NONE
      Application does not require any transport guarantees.
      See Also:
    • INTEGRAL

      public static final 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.
      See Also:
    • CONFIDENTIAL

      public static final String CONFIDENTIAL
      Application requires that the data be transmitted in a fashion that prevents other entities from observing the contents of the transmission.
      See Also:
  • Method Details