public enum ProtocolVariation extends Enum<ProtocolVariation>
| Enum Constant and Description | 
|---|
RM10WSA200408  | 
RM10WSA200508  | 
RM11WSA200508  | 
| Modifier and Type | Method and Description | 
|---|---|
static ProtocolVariation | 
findVariant(String wsrm,
           String wsa)
Get the information for a supported version of WS-ReliableMessaging and WS-Addressing. 
 | 
EncoderDecoder | 
getCodec()  | 
RMConstants | 
getConstants()  | 
String | 
getWSANamespace()  | 
String | 
getWSRMNamespace()  | 
static ProtocolVariation | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ProtocolVariation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProtocolVariation RM10WSA200408
public static final ProtocolVariation RM10WSA200508
public static final ProtocolVariation RM11WSA200508
public static ProtocolVariation[] values()
for (ProtocolVariation c : ProtocolVariation.values()) System.out.println(c);
public static ProtocolVariation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic EncoderDecoder getCodec()
public RMConstants getConstants()
public String getWSRMNamespace()
public String getWSANamespace()
public static ProtocolVariation findVariant(String wsrm, String wsa)
wsrm - WS-RM namespace URIwsa - WS-A namespace URI (null if not specified)null if not a supported version)Apache CXF