org.apache.wss4j.stax.securityEvent
Enum HttpsTokenSecurityEvent.AuthenticationType
java.lang.Object
java.lang.Enum<HttpsTokenSecurityEvent.AuthenticationType>
org.apache.wss4j.stax.securityEvent.HttpsTokenSecurityEvent.AuthenticationType
- All Implemented Interfaces:
- Serializable, Comparable<HttpsTokenSecurityEvent.AuthenticationType>
- Enclosing class:
- HttpsTokenSecurityEvent
public static enum HttpsTokenSecurityEvent.AuthenticationType
- extends Enum<HttpsTokenSecurityEvent.AuthenticationType>
HttpBasicAuthentication
public static final HttpsTokenSecurityEvent.AuthenticationType HttpBasicAuthentication
HttpDigestAuthentication
public static final HttpsTokenSecurityEvent.AuthenticationType HttpDigestAuthentication
HttpsClientCertificateAuthentication
public static final HttpsTokenSecurityEvent.AuthenticationType HttpsClientCertificateAuthentication
HttpsNoAuthentication
public static final HttpsTokenSecurityEvent.AuthenticationType HttpsNoAuthentication
values
public static HttpsTokenSecurityEvent.AuthenticationType[] 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 (HttpsTokenSecurityEvent.AuthenticationType c : HttpsTokenSecurityEvent.AuthenticationType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static HttpsTokenSecurityEvent.AuthenticationType 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 name
NullPointerException - if the argument is null
Copyright © 2004–2013 The Apache Software Foundation. All rights reserved.