1 15 package org.apache.hivemind.lib.impl; 16 17 import org.aopalliance.intercept.MethodInterceptor; 18 import org.aopalliance.intercept.MethodInvocation; 19 20 25 public class SuffixMethodInterceptor implements MethodInterceptor 26 { 27 public static final String SUFFIX = " in bed."; 28 29 public Object invoke(MethodInvocation invocation) throws Throwable  30 { 31 return invocation.proceed() + SUFFIX; 32 } 33 } 34 | Popular Tags |