Enum Class KafkaJaasLoginModuleInitializer.ControlFlag
java.lang.Object
java.lang.Enum<KafkaJaasLoginModuleInitializer.ControlFlag>
org.springframework.kafka.security.jaas.KafkaJaasLoginModuleInitializer.ControlFlag
- All Implemented Interfaces:
Serializable
,Comparable<KafkaJaasLoginModuleInitializer.ControlFlag>
,Constable
- Enclosing class:
- KafkaJaasLoginModuleInitializer
public static enum KafkaJaasLoginModuleInitializer.ControlFlag
extends Enum<KafkaJaasLoginModuleInitializer.ControlFlag>
Control flag values for login configuration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionOptional - TheLoginModule
is not required to succeed.Required - TheLoginModule
is required to succeed.Requisite - TheLoginModule
is required to succeed.Sufficient - TheLoginModule
is not required to succeed. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REQUIRED
Required - TheLoginModule
is required to succeed. If it succeeds or fails, authentication still continues to proceed down theLoginModule
list. -
REQUISITE
Requisite - TheLoginModule
is required to succeed. If it succeeds, authentication continues down theLoginModule
list. If it fails, control immediately returns to the application (authentication does not proceed down theLoginModule
list). -
SUFFICIENT
Sufficient - TheLoginModule
is not required to succeed. If it does succeed, control immediately returns to the application (authentication does not proceed down theLoginModule
list). If it fails, authentication continues down theLoginModule
list. -
OPTIONAL
Optional - TheLoginModule
is not required to succeed. If it succeeds or fails, authentication still continues to proceed down theLoginModule
list.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-