Enum ModuleType
- java.lang.Object
-
- java.lang.Enum<ModuleType>
-
- com.floragunn.searchguard.support.ModuleType
-
- All Implemented Interfaces:
Serializable,Comparable<ModuleType>
public enum ModuleType extends Enum<ModuleType> implements Serializable
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ModuleTypegetByDefaultImplClass(Class<?> clazz)StringgetDefaultImplClass()StringgetDescription()BooleanisEnterprise()static ModuleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ModuleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REST_MANAGEMENT_API
public static final ModuleType REST_MANAGEMENT_API
-
DLSFLS
public static final ModuleType DLSFLS
-
AUDITLOG
public static final ModuleType AUDITLOG
-
MULTITENANCY
public static final ModuleType MULTITENANCY
-
LDAP_AUTHENTICATION_BACKEND
public static final ModuleType LDAP_AUTHENTICATION_BACKEND
-
LDAP_AUTHORIZATION_BACKEND
public static final ModuleType LDAP_AUTHORIZATION_BACKEND
-
KERBEROS_AUTHENTICATION_BACKEND
public static final ModuleType KERBEROS_AUTHENTICATION_BACKEND
-
JWT_AUTHENTICATION_BACKEND
public static final ModuleType JWT_AUTHENTICATION_BACKEND
-
OPENID_AUTHENTICATION_BACKEND
public static final ModuleType OPENID_AUTHENTICATION_BACKEND
-
SAML_AUTHENTICATION_BACKEND
public static final ModuleType SAML_AUTHENTICATION_BACKEND
-
INTERNAL_USERS_AUTHENTICATION_BACKEND
public static final ModuleType INTERNAL_USERS_AUTHENTICATION_BACKEND
-
NOOP_AUTHENTICATION_BACKEND
public static final ModuleType NOOP_AUTHENTICATION_BACKEND
-
NOOP_AUTHORIZATION_BACKEND
public static final ModuleType NOOP_AUTHORIZATION_BACKEND
-
HTTP_BASIC_AUTHENTICATOR
public static final ModuleType HTTP_BASIC_AUTHENTICATOR
-
HTTP_PROXY_AUTHENTICATOR
public static final ModuleType HTTP_PROXY_AUTHENTICATOR
-
HTTP_PROXY_AUTHENTICATOR2
public static final ModuleType HTTP_PROXY_AUTHENTICATOR2
-
HTTP_CLIENTCERT_AUTHENTICATOR
public static final ModuleType HTTP_CLIENTCERT_AUTHENTICATOR
-
CUSTOM_HTTP_AUTHENTICATOR
public static final ModuleType CUSTOM_HTTP_AUTHENTICATOR
-
CUSTOM_AUTHENTICATION_BACKEND
public static final ModuleType CUSTOM_AUTHENTICATION_BACKEND
-
CUSTOM_AUTHORIZATION_BACKEND
public static final ModuleType CUSTOM_AUTHORIZATION_BACKEND
-
CUSTOM_INTERCLUSTER_REQUEST_EVALUATOR
public static final ModuleType CUSTOM_INTERCLUSTER_REQUEST_EVALUATOR
-
CUSTOM_PRINCIPAL_EXTRACTOR
public static final ModuleType CUSTOM_PRINCIPAL_EXTRACTOR
-
AUTH_TOKEN_AUTHENTICATION_BACKEND
public static final ModuleType AUTH_TOKEN_AUTHENTICATION_BACKEND
-
AUTH_TOKEN_HTTP_AUTHENTICATOR
public static final ModuleType AUTH_TOKEN_HTTP_AUTHENTICATOR
-
UNKNOWN
public static final ModuleType UNKNOWN
-
-
Method Detail
-
values
public static ModuleType[] 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 (ModuleType c : ModuleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModuleType 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
-
getByDefaultImplClass
public static ModuleType getByDefaultImplClass(Class<?> clazz)
-
getDescription
public String getDescription()
-
getDefaultImplClass
public String getDefaultImplClass()
-
isEnterprise
public Boolean isEnterprise()
-
-