1 /** 2 * Extension Point initial generated by Mod4j at: Thu Jul 03 22:37:42 CEST 2008 3 */ 4 5 package org.company.thesandbox.domain.businessrules; 6 7 import org.springframework.validation.Errors; 8 9 /** 10 * Just another rule 11 * 12 * This ExtensionPoint is intended to be manually changed by developers. 13 * 14 */ 15 public class AnotherRule extends AnotherRuleImplBase { 16 17 /** 18 * {@inheritDoc} 19 */ 20 public void validate(Object target, Errors errors) { 21 // TODO Implement validation code for AnotherRule. 22 } 23 24 }