* -------------------------------------------------
*/
protected boolean validatePasswordMinLenght(final String password) {
boolean status = true;
SystemProp sysprop = SystemProp.getInstance();
try {
int minlength = Integer.parseInt(sysprop
.getValue("password.minlenght"));
if (password.length() < minlength) {
status = false;
}