01: /*
02: * Created on 12 Sep 2007
03: */
04: package uk.org.ponder.springutil.validator;
05:
06: public interface ValidatorCodeReceiver {
07: /** Sets the message code this validator will return in case of failure */
08: public void setMessageCode(String code);
09:
10: public void setMessageArgs(Object[] args);
11:
12: }
|