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 MapAuthenticationFlowEntity
fromModel(AuthenticationFlowModel model)
String
getAlias()
String
getDescription()
String
getProviderId()
Boolean
isBuiltIn()
Boolean
isTopLevel()
void
setAlias(String alias)
void
setBuiltIn(Boolean builtIn)
void
setDescription(String description)
void
setProviderId(String providerId)
void
setTopLevel(Boolean topLevel)
static AuthenticationFlowModel
toModel(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)
-
-