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.
- Since:
- 1.3
- Author:
- Marius Bogoevici, Gary Russell, Edan Idzerda, Soby Chacko
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionOptional - TheLoginModuleis not required to succeed.Required - TheLoginModuleis required to succeed.Requisite - TheLoginModuleis required to succeed.Sufficient - TheLoginModuleis not required to succeed.
- 
Method SummaryModifier 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- 
REQUIREDRequired - TheLoginModuleis required to succeed. If it succeeds or fails, authentication still continues to proceed down theLoginModulelist.
- 
REQUISITERequisite - TheLoginModuleis required to succeed. If it succeeds, authentication continues down theLoginModulelist. If it fails, control immediately returns to the application (authentication does not proceed down theLoginModulelist).
- 
SUFFICIENTSufficient - TheLoginModuleis not required to succeed. If it does succeed, control immediately returns to the application (authentication does not proceed down theLoginModulelist). If it fails, authentication continues down theLoginModulelist.
- 
OPTIONALOptional - TheLoginModuleis not required to succeed. If it succeeds or fails, authentication still continues to proceed down theLoginModulelist.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-