Enum PasswordAuthType
- java.lang.Object
-
- java.lang.Enum<PasswordAuthType>
-
- io.mosip.authentication.common.service.impl.match.PasswordAuthType
-
- All Implemented Interfaces:
AuthType,Serializable,Comparable<PasswordAuthType>
public enum PasswordAuthType extends Enum<PasswordAuthType> implements AuthType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PASSWORD
-
Field Summary
-
Fields inherited from interface io.mosip.authentication.core.spi.indauth.match.AuthType
DEFAULT_MATCHING_THRESHOLD
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthTypegetAuthTypeImpl()Map<String,Object>getMatchProperties(AuthRequestDTO authRequestDTO, IdInfoFetcher idInfoFetcher, String language)booleanisAuthTypeInfoAvailable(AuthRequestDTO authRequestDTO)static PasswordAuthTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PasswordAuthType[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface io.mosip.authentication.core.spi.indauth.match.AuthType
getAssociatedMatchTypes, getDisplayName, getDisplayName, getMatchingStrategy, getMatchingThreshold, getType, getTypes, isAssociatedMatchType, isAuthTypeEnabled
-
-
-
-
Enum Constant Detail
-
PASSWORD
public static final PasswordAuthType PASSWORD
-
-
Method Detail
-
values
public static PasswordAuthType[] 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 (PasswordAuthType c : PasswordAuthType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PasswordAuthType 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
-
isAuthTypeInfoAvailable
public boolean isAuthTypeInfoAvailable(AuthRequestDTO authRequestDTO)
- Specified by:
isAuthTypeInfoAvailablein interfaceAuthType
-
getMatchProperties
public Map<String,Object> getMatchProperties(AuthRequestDTO authRequestDTO, IdInfoFetcher idInfoFetcher, String language)
- Specified by:
getMatchPropertiesin interfaceAuthType
-
getAuthTypeImpl
public AuthType getAuthTypeImpl()
- Specified by:
getAuthTypeImplin interfaceAuthType
-
-