public enum CredentialTypeEnum extends Enum<CredentialTypeEnum>
Enum defining alias for each supported built-in CredentialHandler
provided by
PicketLink. The alias is used in the configuration without using the full qualified name of a type.
Enum Constant and Description |
---|
DIGEST_CREDENTIAL_HANDLER |
LDAP_PASSWORD_CREDENTIAL_HANDLER |
PASSWORD_CREDENTIAL_HANDLER |
X509_CERT_CREDENTIAL_HANDLER |
Modifier and Type | Method and Description |
---|---|
static String |
forType(String alias) |
String |
toString() |
static CredentialTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CredentialTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CredentialTypeEnum PASSWORD_CREDENTIAL_HANDLER
public static final CredentialTypeEnum LDAP_PASSWORD_CREDENTIAL_HANDLER
public static final CredentialTypeEnum DIGEST_CREDENTIAL_HANDLER
public static final CredentialTypeEnum X509_CERT_CREDENTIAL_HANDLER
public static CredentialTypeEnum[] values()
for (CredentialTypeEnum c : CredentialTypeEnum.values()) System.out.println(c);
public static CredentialTypeEnum 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 String toString()
toString
in class Enum<CredentialTypeEnum>
Copyright © 2016 JBoss by Red Hat. All rights reserved.