Interface MapAuthenticationExecutionEntity
-
- All Superinterfaces:
AbstractEntity
,UpdatableEntity
- All Known Implementing Classes:
HotRodAuthenticationExecutionEntityDelegate
,MapAuthenticationExecutionEntityDelegate
,MapAuthenticationExecutionEntityFieldDelegate
,MapAuthenticationExecutionEntityImpl
,MapAuthenticationExecutionEntityImpl.Empty
public interface MapAuthenticationExecutionEntity 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 MapAuthenticationExecutionEntity
fromModel(AuthenticationExecutionModel model)
String
getAuthenticator()
String
getAuthenticatorConfig()
String
getFlowId()
String
getParentFlowId()
Integer
getPriority()
AuthenticationExecutionModel.Requirement
getRequirement()
Boolean
isAutheticatorFlow()
void
setAuthenticator(String authenticator)
void
setAuthenticatorConfig(String authenticatorConfig)
void
setAutheticatorFlow(Boolean autheticatorFlow)
void
setFlowId(String flowId)
void
setParentFlowId(String parentFlowId)
void
setPriority(Integer priority)
void
setRequirement(AuthenticationExecutionModel.Requirement requirement)
static AuthenticationExecutionModel
toModel(MapAuthenticationExecutionEntity 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 MapAuthenticationExecutionEntity fromModel(AuthenticationExecutionModel model)
-
toModel
static AuthenticationExecutionModel toModel(MapAuthenticationExecutionEntity entity)
-
getAuthenticator
String getAuthenticator()
-
setAuthenticator
void setAuthenticator(String authenticator)
-
getAuthenticatorConfig
String getAuthenticatorConfig()
-
setAuthenticatorConfig
void setAuthenticatorConfig(String authenticatorConfig)
-
getRequirement
AuthenticationExecutionModel.Requirement getRequirement()
-
setRequirement
void setRequirement(AuthenticationExecutionModel.Requirement requirement)
-
isAutheticatorFlow
Boolean isAutheticatorFlow()
-
setAutheticatorFlow
void setAutheticatorFlow(Boolean autheticatorFlow)
-
getFlowId
String getFlowId()
-
setFlowId
void setFlowId(String flowId)
-
getParentFlowId
String getParentFlowId()
-
setParentFlowId
void setParentFlowId(String parentFlowId)
-
getPriority
Integer getPriority()
-
setPriority
void setPriority(Integer priority)
-
-