org.jboss.shrinkwrap.descriptor.api.webcommon30
Enum TransportGuaranteeType

java.lang.Object
  extended by java.lang.Enum<TransportGuaranteeType>
      extended by org.jboss.shrinkwrap.descriptor.api.webcommon30.TransportGuaranteeType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransportGuaranteeType>

public enum TransportGuaranteeType
extends java.lang.Enum<TransportGuaranteeType>

This class implements the transport-guaranteeType xsd type

Original Documentation:



The transport-guaranteeType 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.

Used in: user-data-constraint


Since:
Generation date :2011-07-19T22:55:02.759+02:00
Author:
Ralf Battenfeld

Enum Constant Summary
_CONFIDENTIAL
           
_INTEGRAL
           
_NONE
           
 
Method Summary
static TransportGuaranteeType getFromStringValue(java.lang.String value)
           
 java.lang.String toString()
           
static TransportGuaranteeType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TransportGuaranteeType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

_NONE

public static final TransportGuaranteeType _NONE

_INTEGRAL

public static final TransportGuaranteeType _INTEGRAL

_CONFIDENTIAL

public static final TransportGuaranteeType _CONFIDENTIAL
Method Detail

values

public static TransportGuaranteeType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TransportGuaranteeType c : TransportGuaranteeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TransportGuaranteeType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<TransportGuaranteeType>

getFromStringValue

public static TransportGuaranteeType getFromStringValue(java.lang.String value)