1 package dynaop;2 3 /**4 * Method interception advice.5 * 6 * @author Bob Lee (crazybob@crazybob.org)7 */8 public interface Interceptor {9 10 /**11 * Intercepts a method invocation. 12 */13 Object intercept(Invocation invocation) throws Throwable ;14 }15