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.protectedAConfigViewModel(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()EAuthClientTypegetAuthenticatorType()StringgetDisplayDescription()StringgetDisplayName()StringgetIdentifier()voidsetAttributes(Map<String,String> attributes)voidsetAuthenticatorType(EAuthClientType authenticatorType)voidsetDisplayDescription(String displayDescription)voidsetDisplayName(String displayName)voidsetIdentifier(String identifier)abstract WorkflowStateAuthenticatorConfigtoWorkflowStateAuthenticatorConfig(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:
getAttributesin 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)
-
-