Class AnyoneConfigWrapper
- java.lang.Object
-
- de.xima.fc.web.common.auth.wrapper.config.AnyoneConfigWrapper
-
- All Implemented Interfaces:
IAuthenticatorConfigWrapper
,IStringAttributesMixin
,Serializable
public class AnyoneConfigWrapper extends Object implements IAuthenticatorConfigWrapper
Wrapper for virtual authenticator config for anyone. This config wrapper is used for when there is no access restriction- Since:
- 7.0.5
- Author:
- XIMA Media GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static AnyoneConfigWrapper
INSTANCE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IAuthenticatorClients
buildAuthClients(IFormAuthContext authCtx)
Builds the authentication clients based on the current data of the wrapperorg.pac4j.core.authorization.authorizer.Authorizer
buildAuthorizer()
Builds the authorizer base on the current data of the wrapperMap<String,String>
getAttributes()
String
getAuthenticatorToken()
EAuthClientType
getAuthenticatorType()
IAuthenticatorConfigRenderer
getRenderer()
-
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
-
-
-
-
Field Detail
-
INSTANCE
public static final AnyoneConfigWrapper INSTANCE
-
-
Method Detail
-
getAuthenticatorType
public EAuthClientType getAuthenticatorType()
- Specified by:
getAuthenticatorType
in interfaceIAuthenticatorConfigWrapper
- Returns:
- type of the authenticator config
-
getAuthenticatorToken
public String getAuthenticatorToken()
- Specified by:
getAuthenticatorToken
in interfaceIAuthenticatorConfigWrapper
- Returns:
- name (if it is a system authenticator) or callback UUID (if it is a client authenticator)
-
getAttributes
public Map<String,String> getAttributes()
- Specified by:
getAttributes
in interfaceIAuthenticatorConfigWrapper
- Specified by:
getAttributes
in interfaceIStringAttributesMixin
- Returns:
- custom attributes of this authenticator config
-
getRenderer
public IAuthenticatorConfigRenderer getRenderer()
- Specified by:
getRenderer
in interfaceIAuthenticatorConfigWrapper
- Returns:
- config renderer that is used to create the rendered HTML of the authenticator config
-
buildAuthClients
public IAuthenticatorClients buildAuthClients(IFormAuthContext authCtx)
Description copied from interface:IAuthenticatorConfigWrapper
Builds the authentication clients based on the current data of the wrapper- Specified by:
buildAuthClients
in interfaceIAuthenticatorConfigWrapper
- Parameters:
authCtx
-IFormAuthContext
to build the client for- Returns:
- the
Client
-
buildAuthorizer
public org.pac4j.core.authorization.authorizer.Authorizer buildAuthorizer()
Description copied from interface:IAuthenticatorConfigWrapper
Builds the authorizer base on the current data of the wrapper- Specified by:
buildAuthorizer
in interfaceIAuthenticatorConfigWrapper
- Returns:
- the
Authorizer
-
-