Package de.xima.fc.mdl.auth.config.view
Class AConfigViewModel
- java.lang.Object
-
- de.xima.fc.mdl.auth.config.view.AConfigViewModel
-
- All Implemented Interfaces:
IStringAttributesMixin
,Serializable
- Direct Known Subclasses:
AnonymousConfigViewModel
,BaseConfigViewModel
,PasswordConfigViewModel
public abstract class AConfigViewModel extends Object implements IStringAttributesMixin, Serializable
Abstract base class for authenticator config view models- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description AConfigViewModel()
Deprecated.For JSON deserialization only.protected
AConfigViewModel(EAuthClientType type, String displayName, String displayDescription, Map<String,String> attributes, String identifier)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getAttributes()
EAuthClientType
getAuthenticatorType()
String
getDisplayDescription()
String
getDisplayName()
String
getIdentifier()
void
setAttributes(Map<String,String> attributes)
void
setAuthenticatorType(EAuthClientType authenticatorType)
void
setDisplayDescription(String displayDescription)
void
setDisplayName(String displayName)
void
setIdentifier(String identifier)
abstract WorkflowStateAuthenticatorConfig
toWorkflowStateAuthenticatorConfig(WorkflowState state, Function<UUID,ClientAuthenticator> clientAuthDao, Function<UUID,SystemAuthenticator> systemAuthDao)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.interfaces.mixin.attributes.IStringAttributesMixin
getAttributeValue, getAttributeValueList, getAttributeValueMap, putAttribute, putAttributes, putAttributes, removeAttribute
-
-
-
-
Constructor Detail
-
AConfigViewModel
@Deprecated public AConfigViewModel()
Deprecated.For JSON deserialization only.
-
-
Method Detail
-
getAttributes
public Map<String,String> getAttributes()
- Specified by:
getAttributes
in interfaceIStringAttributesMixin
- Returns:
- the string attributes
-
getAuthenticatorType
public EAuthClientType getAuthenticatorType()
-
getDisplayDescription
public String getDisplayDescription()
-
getDisplayName
public String getDisplayName()
-
getIdentifier
public String getIdentifier()
-
setAuthenticatorType
public void setAuthenticatorType(EAuthClientType authenticatorType)
-
setDisplayDescription
public void setDisplayDescription(String displayDescription)
-
setDisplayName
public void setDisplayName(String displayName)
-
setIdentifier
public void setIdentifier(String identifier)
-
toWorkflowStateAuthenticatorConfig
public abstract WorkflowStateAuthenticatorConfig toWorkflowStateAuthenticatorConfig(WorkflowState state, Function<UUID,ClientAuthenticator> clientAuthDao, Function<UUID,SystemAuthenticator> systemAuthDao)
-
-