}
// check password codec if available
if (null != passwordCipher) {
final PasswordCipher cipher = PasswordCipherFactory.getPasswordCipher(passwordCipher);
final String plainPwd = cipher.decrypt(password.toCharArray());
// override previous password value
super.setPassword(plainPwd);
}