Package de.xima.fc.mdl.enums
Enum EAuthClientType
- java.lang.Object
-
- java.lang.Enum<EAuthClientType>
-
- de.xima.fc.mdl.enums.EAuthClientType
-
- All Implemented Interfaces:
INamedUiElement
,Serializable
,Comparable<EAuthClientType>
public enum EAuthClientType extends Enum<EAuthClientType> implements INamedUiElement
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANONYMOUS
FACEBOOK
FORM
GENERIC_OAUTH2
GENERIC_OPENIDCONNECT
GENERIC_SAML2
GOOGLE
KERBEROS
NTLM
PASSWORD
PLUGIN
-
Field Summary
-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EAuthClientType
getByName(String name)
String
getDisplayName(Locale l)
String
getIconStyleClass()
String
getName()
boolean
isDirectAuthenticator()
boolean
isSystemAuthenticator()
static EAuthClientType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EAuthClientType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERIC_OPENIDCONNECT
public static final EAuthClientType GENERIC_OPENIDCONNECT
-
GENERIC_OAUTH2
public static final EAuthClientType GENERIC_OAUTH2
-
GENERIC_SAML2
public static final EAuthClientType GENERIC_SAML2
-
FACEBOOK
public static final EAuthClientType FACEBOOK
-
GOOGLE
public static final EAuthClientType GOOGLE
-
PLUGIN
public static final EAuthClientType PLUGIN
-
ANONYMOUS
public static final EAuthClientType ANONYMOUS
-
NTLM
public static final EAuthClientType NTLM
-
KERBEROS
public static final EAuthClientType KERBEROS
-
FORM
public static final EAuthClientType FORM
-
PASSWORD
public static final EAuthClientType PASSWORD
-
-
Method Detail
-
values
public static EAuthClientType[] 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 (EAuthClientType c : EAuthClientType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EAuthClientType 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
-
getDisplayName
public String getDisplayName(Locale l)
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
isSystemAuthenticator
public boolean isSystemAuthenticator()
-
isDirectAuthenticator
public boolean isDirectAuthenticator()
-
getIconStyleClass
public String getIconStyleClass()
-
getName
public String getName()
-
getByName
public static EAuthClientType getByName(String name)
-
-