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_IN
static RequiredCredentialModel
CLIENT_CERT
protected String
formLabel
protected boolean
input
static RequiredCredentialModel
KERBEROS
static RequiredCredentialModel
PASSWORD
protected boolean
secret
static RequiredCredentialModel
SECRET
static RequiredCredentialModel
TOTP
protected String
type
-
Constructor Summary
Constructors Constructor Description RequiredCredentialModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFormLabel()
String
getType()
boolean
isInput()
boolean
isSecret()
void
setFormLabel(String formLabel)
void
setInput(boolean input)
void
setSecret(boolean secret)
void
setType(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)
-
-