Package org.keycloak.models
Class RequiredCredentialModel
- java.lang.Object
-
- org.keycloak.models.RequiredCredentialModel
-
- All Implemented Interfaces:
Serializable
public class RequiredCredentialModel extends Object implements Serializable
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static Map<String,RequiredCredentialModel>BUILT_INstatic RequiredCredentialModelCLIENT_CERTprotected StringformLabelprotected booleaninputstatic RequiredCredentialModelKERBEROSstatic RequiredCredentialModelPASSWORDprotected booleansecretstatic RequiredCredentialModelSECRETstatic RequiredCredentialModelTOTPprotected Stringtype
-
Constructor Summary
Constructors Constructor Description RequiredCredentialModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFormLabel()StringgetType()booleanisInput()booleanisSecret()voidsetFormLabel(String formLabel)voidsetInput(boolean input)voidsetSecret(boolean secret)voidsetType(String type)
-
-
-
Field Detail
-
type
protected String type
-
input
protected boolean input
-
secret
protected boolean secret
-
formLabel
protected String formLabel
-
BUILT_IN
public static final Map<String,RequiredCredentialModel> BUILT_IN
-
PASSWORD
public static final RequiredCredentialModel PASSWORD
-
TOTP
public static final RequiredCredentialModel TOTP
-
CLIENT_CERT
public static final RequiredCredentialModel CLIENT_CERT
-
SECRET
public static final RequiredCredentialModel SECRET
-
KERBEROS
public static final RequiredCredentialModel KERBEROS
-
-
Method Detail
-
getType
public String getType()
-
setType
public void setType(String type)
-
isInput
public boolean isInput()
-
setInput
public void setInput(boolean input)
-
isSecret
public boolean isSecret()
-
setSecret
public void setSecret(boolean secret)
-
getFormLabel
public String getFormLabel()
-
setFormLabel
public void setFormLabel(String formLabel)
-
-