1 /* 2 * Created on Sep 14, 2003 3 * 4 * To change the template for this generated file go to 5 * Window>Preferences>Java>Code Generation>Code and Comments 6 */ 7 package org.jahia.security.license; 8 9 import org.jahia.resourcebundle.ResourceMessage; 10 11 /** 12 * @author loom 13 * 14 * To change the template for this generated type comment go to 15 * Window>Preferences>Java>Code Generation>Code and Comments 16 */ 17 public interface Validator { 18 19 public boolean assertEquals(String value); 20 21 public boolean assertInRange(String fromValue, String toValue); 22 23 public ResourceMessage getErrorMessage(); 24 25 } 26