* and the action method, returns action result object.
*/
protected Object invokeAction() throws Exception {
// interceptors
if (interceptorIndex < totalInterceptors) {
ActionInterceptor interceptor = actionConfig.interceptors[interceptorIndex];
interceptorIndex++;
return interceptor.invoke(this);
}
// action
execState = 2;