1 /*** 2 * 3 */ 4 package hu.elte.tribus.services; 5 6 import org.aopalliance.intercept.MethodInterceptor; 7 import org.aopalliance.intercept.MethodInvocation; 8 9 /*** 10 * @author kocka 11 * 12 */ 13 public class IrcSecurityInterceptor implements MethodInterceptor { 14 15 public Object invoke(MethodInvocation invocation) throws Throwable { 16 17 return null; 18 } 19 20 }