Package org.apache.cxf.ws.security.trust
Enum STSAuthParams.AuthMode
- java.lang.Object
-
- java.lang.Enum<STSAuthParams.AuthMode>
-
- org.apache.cxf.ws.security.trust.STSAuthParams.AuthMode
-
- All Implemented Interfaces:
Serializable,Comparable<STSAuthParams.AuthMode>
- Enclosing class:
- STSAuthParams
public static enum STSAuthParams.AuthMode extends Enum<STSAuthParams.AuthMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UT_SYMMETRICUT_TRANSPORTX509_ASSYMETRIC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description QNamegetEndpointName()StringgetKeyType()static STSAuthParams.AuthModevalueOf(String name)Returns the enum constant of this type with the specified name.static STSAuthParams.AuthMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X509_ASSYMETRIC
public static final STSAuthParams.AuthMode X509_ASSYMETRIC
-
UT_TRANSPORT
public static final STSAuthParams.AuthMode UT_TRANSPORT
-
UT_SYMMETRIC
public static final STSAuthParams.AuthMode UT_SYMMETRIC
-
-
Method Detail
-
values
public static STSAuthParams.AuthMode[] 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 (STSAuthParams.AuthMode c : STSAuthParams.AuthMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static STSAuthParams.AuthMode valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getEndpointName
public QName getEndpointName()
-
getKeyType
public String getKeyType()
-
-