• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Custom Validator persistently returning NULL

 
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm using a custom validator in my application. Defined and registered in faces-config.xml. The code is below.

public void validate(FacesContext context, UIComponent component,
Object value) throws ValidatorException {
// TODO Auto-generated method stub
String nameValue;

if (value == null)
return;
else
nameValue = value.toString();

if ((isEmptyOrShort(nameValue))) {
FacesMessage message = new FacesMessage("Validation Error occured",
"Field" + nameValue + "is required or is too short");
message.setSeverity(FacesMessage.SEVERITY_ERROR);

validationStatus = "Failure";

throw new ValidatorException(message);
}
else
validationStatus = "Success";

}

private static boolean isEmptyOrShort(String value) {
if (value.equals("") || (value.length() < 3 || value.length() > 10) || value == null)
return true;
else
return false;
}

public String returnValidationStatus() {
System.out.println("Inside LoginValidator");
return validationStatus;
}

The point is to return a value to the jsf page so that it can be dynamically validated. The validate function cannot be directly called from the jsf tag on my jsp page. So I have created an object of the validator class in my Backing Bean and am trying to access the method. It is persistently returning null. Please advise as to wat the problem might be.
reply
    Bookmark Topic Watch Topic
  • New Topic