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 Summary
Nested Classes Modifier and Type Class Description static classRequiredCredentialEntity.Key
-
Constructor Summary
Constructors Constructor Description RequiredCredentialEntity()
-
Method Summary
All 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
-
realm
protected RealmEntity realm
-
type
protected String type
-
input
protected boolean input
-
secret
protected boolean secret
-
formLabel
protected String formLabel
-
-
Method Detail
-
getRealm
public RealmEntity getRealm()
-
setRealm
public void setRealm(RealmEntity realm)
-
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)
-
-