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 class
RequiredCredentialEntity.Key
-
Constructor Summary
Constructors Constructor Description RequiredCredentialEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getFormLabel()
RealmEntity
getRealm()
String
getType()
int
hashCode()
boolean
isInput()
boolean
isSecret()
void
setFormLabel(String formLabel)
void
setInput(boolean input)
void
setRealm(RealmEntity realm)
void
setSecret(boolean secret)
void
setType(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)
-
-