public static enum HttpsToken.AuthenticationType extends Enum<HttpsToken.AuthenticationType>
Enum Constant and Description |
---|
HttpBasicAuthentication |
HttpDigestAuthentication |
RequireClientCertificate |
Modifier and Type | Method and Description |
---|---|
static HttpsToken.AuthenticationType |
lookUp(String name) |
static HttpsToken.AuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpsToken.AuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpsToken.AuthenticationType HttpBasicAuthentication
public static final HttpsToken.AuthenticationType HttpDigestAuthentication
public static final HttpsToken.AuthenticationType RequireClientCertificate
public static HttpsToken.AuthenticationType[] values()
for (HttpsToken.AuthenticationType c : HttpsToken.AuthenticationType.values()) System.out.println(c);
public static HttpsToken.AuthenticationType 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 static HttpsToken.AuthenticationType lookUp(String name)
Copyright © 2017 JBoss by Red Hat. All rights reserved.