Package de.xima.fc.mdl.enums
Enum ELicenseFeature
- java.lang.Object
-
- java.lang.Enum<ELicenseFeature>
-
- de.xima.fc.mdl.enums.ELicenseFeature
-
- All Implemented Interfaces:
INamedUiElement
,Serializable
,Comparable<ELicenseFeature>
public enum ELicenseFeature extends Enum<ELicenseFeature> implements INamedUiElement
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
-
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 String
getDisplayName(Locale l)
Class<?>
getFeatureClass()
String
getFeatureName()
static ELicenseFeature
valueOf(String name)
Returns the enum constant of this type with the specified name.static ELicenseFeature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COUNT_CLIENTS
public static final ELicenseFeature COUNT_CLIENTS
-
COUNT_FORMS
public static final ELicenseFeature COUNT_FORMS
-
COUNT_RECORDS
public static final ELicenseFeature COUNT_RECORDS
-
COUNT_INVITES
public static final ELicenseFeature COUNT_INVITES
-
COUNT_FRONTENDSERVERS
public static final ELicenseFeature COUNT_FRONTENDSERVERS
-
COUNT_CLIENT_FRONTENDSERVERS
public static final ELicenseFeature COUNT_CLIENT_FRONTENDSERVERS
-
ENABLE_KERBEROS
public static final ELicenseFeature ENABLE_KERBEROS
-
ENABLE_EXTERNAL_USERS_OIDC
public static final ELicenseFeature ENABLE_EXTERNAL_USERS_OIDC
-
ENABLE_EXTERNAL_USERS_OAUTH
public static final ELicenseFeature ENABLE_EXTERNAL_USERS_OAUTH
-
ENABLE_EXTERNAL_USERS_SAML
public static final ELicenseFeature ENABLE_EXTERNAL_USERS_SAML
-
ENABLE_EXTERNAL_USERS_PLUGIN
public static final ELicenseFeature ENABLE_EXTERNAL_USERS_PLUGIN
-
ENABLE_LDAP_AUTH
public static final ELicenseFeature ENABLE_LDAP_AUTH
-
ENABLE_APPOINTMENTS
public static final ELicenseFeature ENABLE_APPOINTMENTS
-
ENABLE_CLIENT_CHOOSER
public static final ELicenseFeature ENABLE_CLIENT_CHOOSER
-
ENABLE_CLOUD_LOGO
public static final ELicenseFeature ENABLE_CLOUD_LOGO
-
FORCE_FORM_BRANDING
public static final ELicenseFeature FORCE_FORM_BRANDING
-
ENABLE_NTLM
@Deprecated public static final ELicenseFeature ENABLE_NTLM
Deprecated.
-
-
Method Detail
-
values
public static ELicenseFeature[] 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 (ELicenseFeature c : ELicenseFeature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ELicenseFeature 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
-
getFeatureName
public String getFeatureName()
-
getFeatureClass
public Class<?> getFeatureClass()
-
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).
-
-