| Home >> All >> com >> ghettojedi >> aop >> [ aspect Javadoc ] |
Source code: com/ghettojedi/aop/aspect/AdvisableInterceptor.java
1 package com.ghettojedi.aop.aspect; 2 3 4 public class AdvisableInterceptor implements Interceptor { 5 public Object invoke(Invocation invocation) throws Throwable { 6 return invocation.proceed(); 7 } 8 }