Interface MapAuthenticationFlowEntity
-
- All Superinterfaces:
AbstractEntity,UpdatableEntity
- All Known Implementing Classes:
HotRodAuthenticationFlowEntityDelegate,MapAuthenticationFlowEntityDelegate,MapAuthenticationFlowEntityFieldDelegate,MapAuthenticationFlowEntityImpl,MapAuthenticationFlowEntityImpl.Empty
public interface MapAuthenticationFlowEntity extends UpdatableEntity, AbstractEntity
-
-
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 MapAuthenticationFlowEntityfromModel(AuthenticationFlowModel model)StringgetAlias()StringgetDescription()StringgetProviderId()BooleanisBuiltIn()BooleanisTopLevel()voidsetAlias(String alias)voidsetBuiltIn(Boolean builtIn)voidsetDescription(String description)voidsetProviderId(String providerId)voidsetTopLevel(Boolean topLevel)static AuthenticationFlowModeltoModel(MapAuthenticationFlowEntity entity)-
Methods inherited from interface org.keycloak.models.map.common.AbstractEntity
getId, setId
-
Methods inherited from interface org.keycloak.models.map.common.UpdatableEntity
clearUpdatedFlag, isUpdated
-
-
-
-
Method Detail
-
fromModel
static MapAuthenticationFlowEntity fromModel(AuthenticationFlowModel model)
-
toModel
static AuthenticationFlowModel toModel(MapAuthenticationFlowEntity entity)
-
getAlias
String getAlias()
-
setAlias
void setAlias(String alias)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String description)
-
getProviderId
String getProviderId()
-
setProviderId
void setProviderId(String providerId)
-
isBuiltIn
Boolean isBuiltIn()
-
setBuiltIn
void setBuiltIn(Boolean builtIn)
-
isTopLevel
Boolean isTopLevel()
-
setTopLevel
void setTopLevel(Boolean topLevel)
-
-