private void setPassword(final SyncopeUser user, final String password,
final SyncopeClientCompositeErrorException scce) {
int passwordHistorySize = 0;
PasswordPolicy policy = policyDAO.getGlobalPasswordPolicy();
if (policy != null && policy.getSpecification() != null) {
passwordHistorySize = policy.<PasswordPolicySpec>getSpecification().getHistoryLength();
}
try {
user.setPassword(password, getPredefinedCipherAlgoritm(), passwordHistorySize);
} catch (NotFoundException e) {