Package org.nuxeo.usermapper.extension
Class NashornUserMapper
- java.lang.Object
-
- org.nuxeo.usermapper.extension.AbstractUserMapper
-
- org.nuxeo.usermapper.extension.NashornUserMapper
-
- All Implemented Interfaces:
UserMapper
public class NashornUserMapper extends AbstractUserMapper
UserMapper
implementation using Nashorn to implement logic using JavaScript- Since:
- 7.4
- Author:
- tiry
-
-
Field Summary
Fields Modifier and Type Field Description protected String
mapperSource
protected String
wrapperSource
-
Fields inherited from class org.nuxeo.usermapper.extension.AbstractUserMapper
log
-
-
Constructor Summary
Constructors Constructor Description NashornUserMapper(String mapperScript, String wrapperScript)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
init(Map<String,String> params)
Init callback to receive the parameters set inside the descriptorvoid
release()
Release callback : called when the plugin is about to be unloadedprotected void
resolveAttributes(Object userObject, Map<String,Serializable> searchAttributes, Map<String,Serializable> userAttributes, Map<String,Serializable> profileAttributes)
Object
wrapNuxeoPrincipal(NuxeoPrincipal principal, Object userObject, Map<String,Serializable> params)
Wrap theNuxeoPrincipal
as the userObject used in the external authentication system-
Methods inherited from class org.nuxeo.usermapper.extension.AbstractUserMapper
createPrincipal, getOrCreateAndUpdateNuxeoPrincipal, getOrCreateAndUpdateNuxeoPrincipal, getUserManager, updatePrincipal, updateProfile
-
-
-
-
Method Detail
-
wrapNuxeoPrincipal
public Object wrapNuxeoPrincipal(NuxeoPrincipal principal, Object userObject, Map<String,Serializable> params)
Description copied from interface:UserMapper
Wrap theNuxeoPrincipal
as the userObject used in the external authentication system- Parameters:
principal
- the NuxeoPrincipaluserObject
- the native object to represent the principal in the target system
-
init
public void init(Map<String,String> params) throws Exception
Description copied from interface:UserMapper
Init callback to receive the parameters set inside the descriptor- Throws:
Exception
-
release
public void release()
Description copied from interface:UserMapper
Release callback : called when the plugin is about to be unloaded
-
resolveAttributes
protected void resolveAttributes(Object userObject, Map<String,Serializable> searchAttributes, Map<String,Serializable> userAttributes, Map<String,Serializable> profileAttributes)
- Specified by:
resolveAttributes
in classAbstractUserMapper
-
-