1 16 package org.directwebremoting.impl; 17 18 import java.lang.reflect.Method ; 19 20 import org.directwebremoting.AjaxFilter; 21 import org.directwebremoting.AjaxFilterChain; 22 23 27 public class ExecuteAjaxFilter implements AjaxFilter 28 { 29 32 public Object doFilter(Object obj, Method method, Object [] params, AjaxFilterChain chain) throws Exception  33 { 34 return method.invoke(obj, params); 35 } 36 } 37 | Popular Tags |