Enum EAuthClientType
- All Implemented Interfaces:
INamedUiElement, Serializable, Comparable<EAuthClientType>
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNow known as Microsoft Entra ID.Deprecated. -
Field Summary
Fields inherited from interface INamedUiElement
ATTR_DISPLAY_NAME -
Method Summary
Modifier and TypeMethodDescriptionstatic EAuthClientTypeReturns the authenticator type with the given name.Returns the default render type for this authenticator type.getDisplayName(Locale locale) Returns the display name of this authenticator type in the given locale.Returns the default style class of the icon for authenticators of this type.getName()Returns the name of this authenticator type.booleanReturns whether authenticators of this type can provide distinct user, as in users that can be distinguished from one another (via an ID).booleanReturns whether this authenticator is capable of producing adirect authenticator.booleanReturns whether this authenticator type requires anauthenticator entityto be created in order to be used.booleanDeprecated.static EAuthClientTypeReturns 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 Details
-
AZURE_AD
-
GENERIC_OPENIDCONNECT
-
GENERIC_OAUTH2
- Since:
- 7.0.0
-
GENERIC_SAML2
-
FACEBOOK
-
GOOGLE
-
PLUGIN
-
LDAP
- Since:
- 8.0.0
-
ANONYMOUS
-
KERBEROS
-
KERBEROS_EXTENSION
- Since:
- 8.0.0
-
ADMIN
- Since:
- 8.0.0
-
FORM
-
PASSWORD
-
PASSWORD_GENERATOR_ACTION
-
NTLM
Deprecated.Since version 8.0.0 not configurable via UI anymore.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getByName
Returns the authenticator type with the given name.- Parameters:
name- The name of the authenticator type to get.- Returns:
- The authenticator type with the given name or
nullif no such authenticator type exists.
-
getDefaultRenderType
Returns the default render type for this authenticator type. The default render type determines how an authenticator of this type should be rendered.- Returns:
- The default render type for this authenticator type.
- Since:
- 8.2.0
-
isSystemAuthenticator
Deprecated.UseisNeedsAuthenticatorEntity()instead to determine if the authenticator needs an authenticator entity.Returns whether this authenticator type is a "system authenticator". System authenticators are authenticators that are provided by the "system" and don't need anauthenticator entity. This method is deprecated because of its ambiguous name.system authenticatorsin formcycle are a type of authenticator entity on the system level. UseisNeedsAuthenticatorEntity()instead.- Returns:
trueif this authenticator type is a "system authenticator" andfalseotherwise.
-
isDirectAuthenticator
public boolean isDirectAuthenticator()Returns whether this authenticator is capable of producing adirect authenticator.- Returns:
trueif this authenticator is capable of producing a direct authenticator andfalseotherwise.
-
isNeedsAuthenticatorEntity
public boolean isNeedsAuthenticatorEntity()Returns whether this authenticator type requires anauthenticator entityto be created in order to be used.- Returns:
trueif an authenticator entity is required andfalseotherwise.
-
isCanProvideDistinctUsers
public boolean isCanProvideDistinctUsers()Returns whether authenticators of this type can provide distinct user, as in users that can be distinguished from one another (via an ID).- Returns:
trueif authenticators of this type can provide distinct users andfalseotherwise.
-
getIconStyleClass
Returns the default style class of the icon for authenticators of this type. May be used when rendering the authenticator.- Returns:
- The default style class of the icon
-
getName
Returns the name of this authenticator type. The name of authenticator types that don'tneed an authenticator entityis used as theclient name.- Returns:
- The name of this authenticator type.
-
getDisplayName
Returns the display name of this authenticator type in the given locale.- Specified by:
getDisplayNamein interfaceINamedUiElement- Parameters:
locale- The locale to get the display name for.- Returns:
- The display name of this authenticator type in the given locale.
-
isNeedsAuthenticatorEntity()instead to determine if the authenticator needs an authenticator entity.