Package org.keycloak.models.jpa.entities
Class RequiredCredentialEntity
- java.lang.Object
- 
- org.keycloak.models.jpa.entities.RequiredCredentialEntity
 
- 
 @Entity public class RequiredCredentialEntity extends Object - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classRequiredCredentialEntity.Key
 - 
Constructor SummaryConstructors Constructor Description RequiredCredentialEntity()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetFormLabel()RealmEntitygetRealm()StringgetType()inthashCode()booleanisInput()booleanisSecret()voidsetFormLabel(String formLabel)voidsetInput(boolean input)voidsetRealm(RealmEntity realm)voidsetSecret(boolean secret)voidsetType(String type)
 
- 
- 
- 
Field Detail- 
realmprotected RealmEntity realm 
 - 
typeprotected String type 
 - 
inputprotected boolean input 
 - 
secretprotected boolean secret 
 - 
formLabelprotected String formLabel 
 
- 
 - 
Method Detail- 
getRealmpublic RealmEntity getRealm() 
 - 
setRealmpublic void setRealm(RealmEntity realm) 
 - 
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) 
 
- 
 
-