1 17 package org.alfresco.repo.security.permissions.impl; 18 19 import org.aopalliance.intercept.MethodInterceptor; 20 import org.aopalliance.intercept.MethodInvocation; 21 22 public class AlwaysProceedMethodInterceptor implements MethodInterceptor 23 { 24 25 public AlwaysProceedMethodInterceptor() 26 { 27 super(); 28 } 29 30 public Object invoke(MethodInvocation mi) throws Throwable  31 { 32 return mi.proceed(); 33 } 34 35 } 36 | Popular Tags |