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 MapRequiredCredentialEntityfromModel(RequiredCredentialModel model)StringgetFormLabel()StringgetType()BooleanisInput()BooleanisSecret()voidsetFormLabel(String formLabel)voidsetInput(Boolean input)voidsetSecret(Boolean secret)voidsetType(String type)static RequiredCredentialModeltoModel(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)
-
-