1 7 package com.inversoft.verge.mvc.validator; 8 9 10 import com.inversoft.util.typeconverter.TypeConversionException; 11 import com.inversoft.verge.mvc.MVCException; 12 import com.inversoft.verge.mvc.MVCRequest; 13 import com.inversoft.verge.util.WebBeanProperty; 14 15 16 27 public interface ValidatorParser { 28 29 37 void preExecute(MVCRequest mvcRequest) throws MVCException; 38 39 44 void execute(MVCRequest mvcRequest) throws MVCException; 45 46 58 void executeHandle(MVCRequest mvcRequest, TypeConversionException tce, 59 Object model, WebBeanProperty wbp) 60 throws MVCException; 61 } | Popular Tags |