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 SummaryFields Modifier and Type Field Description static Map<String,RequiredCredentialModel>BUILT_INstatic RequiredCredentialModelCLIENT_CERTprotected StringformLabelprotected booleaninputstatic RequiredCredentialModelKERBEROSstatic RequiredCredentialModelPASSWORDprotected booleansecretstatic RequiredCredentialModelSECRETstatic RequiredCredentialModelTOTPprotected Stringtype
 - 
Constructor SummaryConstructors Constructor Description RequiredCredentialModel()
 - 
Method SummaryAll 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- 
typeprotected String type 
 - 
inputprotected boolean input 
 - 
secretprotected boolean secret 
 - 
formLabelprotected String formLabel 
 - 
BUILT_INpublic static final Map<String,RequiredCredentialModel> BUILT_IN 
 - 
PASSWORDpublic static final RequiredCredentialModel PASSWORD 
 - 
TOTPpublic static final RequiredCredentialModel TOTP 
 - 
CLIENT_CERTpublic static final RequiredCredentialModel CLIENT_CERT 
 - 
SECRETpublic static final RequiredCredentialModel SECRET 
 - 
KERBEROSpublic static final RequiredCredentialModel KERBEROS 
 
- 
 - 
Method Detail- 
getTypepublic String getType() 
 - 
setTypepublic void setType(String type) 
 - 
isInputpublic boolean isInput() 
 - 
setInputpublic void setInput(boolean input) 
 - 
isSecretpublic boolean isSecret() 
 - 
setSecretpublic void setSecret(boolean secret) 
 - 
getFormLabelpublic String getFormLabel() 
 - 
setFormLabelpublic void setFormLabel(String formLabel) 
 
- 
 
-