| |
|
| java.lang.Object org.objectweb.jonas_web.deployment.api.TransportGuaranteeDesc
TransportGuaranteeDesc | public class TransportGuaranteeDesc (Code) | | Defines a transport guarantee object.
Several kind of tranport can be assigned.
It could be : INTEGRAL, CONFIDENTIAL, NONE
author: Florent Benoit |
CONFIDENTIAL_TRANSPORT | final public static String CONFIDENTIAL_TRANSPORT(Code) | | Constant for Confidential transport guarantee
|
INTEGRAL_TRANSPORT | final public static String INTEGRAL_TRANSPORT(Code) | | Constant for Integral transport guarantee
|
NONE_TRANSPORT | final public static String NONE_TRANSPORT(Code) | | Constant for None transport guarantee
|
TransportGuaranteeDesc | public TransportGuaranteeDesc()(Code) | | Constructor : Build a new Guarantee object
|
addTransportValue | public void addTransportValue(String name)(Code) | | Add transport name
No check is performed here on the name
validation has to be done at XML parsing time
Parameters: name - protocol value |
getNumber | public int getNumber()(Code) | | Gets the number of different transports.
count of transports. |
hasNone | public boolean hasNone()(Code) | | Test if this transport Guarantee contains the NONE value
true if it contains NONE |
isConfidential | public boolean isConfidential()(Code) | | Test if this transport Guarantee contains the CONFIDENTIAL value
true if it contains CONFIDENTIAL |
isIntegral | public boolean isIntegral()(Code) | | Test if this transport Guarantee contains the INTEGRAL value
true if it contains INTEGRAL |
toString | public String toString()(Code) | | String representation
string representation of the pattern |
|
|
|