Package org.keycloak.representations.idm
Class AuthenticationFlowRepresentation
- java.lang.Object
-
- org.keycloak.representations.idm.AuthenticationFlowRepresentation
-
- All Implemented Interfaces:
Serializable
public class AuthenticationFlowRepresentation extends Object implements Serializable
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<AuthenticationExecutionExportRepresentation>
authenticationExecutions
-
Constructor Summary
Constructors Constructor Description AuthenticationFlowRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlias()
List<AuthenticationExecutionExportRepresentation>
getAuthenticationExecutions()
String
getDescription()
String
getId()
String
getProviderId()
boolean
isBuiltIn()
boolean
isTopLevel()
void
setAlias(String alias)
void
setAuthenticationExecutions(List<AuthenticationExecutionExportRepresentation> authenticationExecutions)
void
setBuiltIn(boolean builtIn)
void
setDescription(String description)
void
setId(String id)
void
setProviderId(String providerId)
void
setTopLevel(boolean topLevel)
-
-
-
Field Detail
-
authenticationExecutions
protected List<AuthenticationExecutionExportRepresentation> authenticationExecutions
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getAlias
public String getAlias()
-
setAlias
public void setAlias(String alias)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
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)
-
getAuthenticationExecutions
public List<AuthenticationExecutionExportRepresentation> getAuthenticationExecutions()
-
setAuthenticationExecutions
public void setAuthenticationExecutions(List<AuthenticationExecutionExportRepresentation> authenticationExecutions)
-
-