Package org.keycloak.models.jpa.entities
Class AuthenticationFlowEntity
- java.lang.Object
-
- org.keycloak.models.jpa.entities.AuthenticationFlowEntity
-
@Entity public class AuthenticationFlowEntity extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected String
alias
protected boolean
builtIn
protected String
description
protected String
id
protected String
providerId
protected RealmEntity
realm
protected boolean
topLevel
-
Constructor Summary
Constructors Constructor Description AuthenticationFlowEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAlias()
String
getDescription()
Collection<AuthenticationExecutionEntity>
getExecutions()
String
getId()
String
getProviderId()
RealmEntity
getRealm()
int
hashCode()
boolean
isBuiltIn()
boolean
isTopLevel()
void
setAlias(String alias)
void
setBuiltIn(boolean builtIn)
void
setDescription(String description)
void
setExecutions(Collection<AuthenticationExecutionEntity> executions)
void
setId(String id)
void
setProviderId(String providerId)
void
setRealm(RealmEntity realm)
void
setTopLevel(boolean topLevel)
-
-
-
Field Detail
-
id
protected String id
-
realm
protected RealmEntity realm
-
alias
protected String alias
-
providerId
protected String providerId
-
description
protected String description
-
topLevel
protected boolean topLevel
-
builtIn
protected boolean builtIn
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getRealm
public RealmEntity getRealm()
-
setRealm
public void setRealm(RealmEntity realm)
-
getAlias
public String getAlias()
-
setAlias
public void setAlias(String alias)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getExecutions
public Collection<AuthenticationExecutionEntity> getExecutions()
-
setExecutions
public void setExecutions(Collection<AuthenticationExecutionEntity> executions)
-
getProviderId
public String getProviderId()
-
setProviderId
public void setProviderId(String providerId)
-
isTopLevel
public boolean isTopLevel()
-
setTopLevel
public void setTopLevel(boolean topLevel)
-
isBuiltIn
public boolean isBuiltIn()
-
setBuiltIn
public void setBuiltIn(boolean builtIn)
-
-