Examples of HtmlInputSecret


Examples of javax.faces.component.html.HtmlInputSecret

        }
    }

    @Override
    public UIInput createInput() {
        HtmlInputSecret inputUser = new HtmlInputSecret();
        LengthValidator validator = new LengthValidator();
        if (getMaxLenght() != null) {
            inputUser.setSize(getMaxLenght());
            inputUser.setMaxlength(getMaxLenght());
            validator.setMaximum(getMaxLenght());
        }
        validator.setMinimum(getMinLenght());
        inputUser.addValidator(validator);
        return inputUser;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.