Interface MapRequiredCredentialEntity
-
- All Superinterfaces:
UpdatableEntity
- All Known Implementing Classes:
HotRodRequiredCredentialEntityDelegate
,MapRequiredCredentialEntityDelegate
,MapRequiredCredentialEntityFieldDelegate
,MapRequiredCredentialEntityImpl
,MapRequiredCredentialEntityImpl.Empty
public interface MapRequiredCredentialEntity extends UpdatableEntity
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.map.common.UpdatableEntity
UpdatableEntity.Impl
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static MapRequiredCredentialEntity
fromModel(RequiredCredentialModel model)
String
getFormLabel()
String
getType()
Boolean
isInput()
Boolean
isSecret()
void
setFormLabel(String formLabel)
void
setInput(Boolean input)
void
setSecret(Boolean secret)
void
setType(String type)
static RequiredCredentialModel
toModel(MapRequiredCredentialEntity entity)
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
fromModel
static MapRequiredCredentialEntity fromModel(RequiredCredentialModel model)
-
toModel
static RequiredCredentialModel toModel(MapRequiredCredentialEntity entity)
-
getType
String getType()
-
setType
void setType(String type)
-
getFormLabel
String getFormLabel()
-
setFormLabel
void setFormLabel(String formLabel)
-
isSecret
Boolean isSecret()
-
setSecret
void setSecret(Boolean secret)
-
isInput
Boolean isInput()
-
setInput
void setInput(Boolean input)
-
-