1 package org.apache.turbine.util.validation; 2 3 18 19 24 public class AlwaysTrueValidator extends InputValidator 25 { 26 29 public AlwaysTrueValidator() 30 { 31 super(AllowNullInput, NoMaxSize, EmptyArgv); 32 } 33 34 37 protected void check(String input) 38 throws Exception  39 { 40 } 42 43 46 public String getExpectedFormat() 47 { 48 return ""; 49 } 50 } 51 | Popular Tags |