Class GenerateRandomPasswordPropagationActions
- java.lang.Object
-
- org.apache.syncope.core.provisioning.java.propagation.GenerateRandomPasswordPropagationActions
-
- All Implemented Interfaces:
PropagationActions
public class GenerateRandomPasswordPropagationActions extends Object implements PropagationActions
-
-
Field Summary
Fields Modifier and Type Field Description protected static Logger
LOG
protected PasswordGenerator
passwordGenerator
protected RealmDAO
realmDAO
protected UserDAO
userDAO
-
Constructor Summary
Constructors Constructor Description GenerateRandomPasswordPropagationActions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
before(PropagationTaskInfo taskInfo)
Executes logic before actual propagation.protected boolean
generateRandomPassword(PropagationTaskInfo taskInfo)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.syncope.core.provisioning.api.propagation.PropagationActions
after, moreAttrsToGet, moreAttrsToGet, onError
-
-
-
-
Field Detail
-
LOG
protected static final Logger LOG
-
userDAO
@Autowired protected UserDAO userDAO
-
realmDAO
@Autowired protected RealmDAO realmDAO
-
passwordGenerator
@Autowired protected PasswordGenerator passwordGenerator
-
-
Method Detail
-
generateRandomPassword
protected boolean generateRandomPassword(PropagationTaskInfo taskInfo)
-
before
@Transactional(readOnly=true) public void before(PropagationTaskInfo taskInfo)
Description copied from interface:PropagationActions
Executes logic before actual propagation.- Specified by:
before
in interfacePropagationActions
- Parameters:
taskInfo
- propagation task
-
-