Package org.apache.wicket.validation.validator

Examples of org.apache.wicket.validation.validator.UrlValidator


                // Authority URL
                TextField<String> authURL;
                authURL = new TextField<String>("authorityURL", new PropertyModel<String>(
                        item.getModel(), "href"));
                authURL.setRequired(true);
                authURL.add(new UrlValidator());
                FormComponentFeedbackBorder urlBorder = new FormComponentFeedbackBorder("urlBorder");
                item.add(urlBorder);
                urlBorder.add(authURL);

                // remove link
View Full Code Here

TOP

Related Classes of org.apache.wicket.validation.validator.UrlValidator

Copyright © 2018 www.massapicom. 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.