1 25 package org.objectweb.easybeans.tests.common.interceptors.business.base; 26 27 import static org.objectweb.easybeans.tests.common.helper.InterceptorHelper.addValue; 28 29 import javax.interceptor.InvocationContext; 30 31 32 33 39 public class PrintOrderWithoutAnnotationInterc { 40 41 44 public static final Integer ORDER = new Integer (1); 45 46 54 public Object addOrder(final InvocationContext invocationContext) throws Exception { 55 return addValue(invocationContext, ORDER, this.getClass().toString()); 56 } 57 } 58 | Popular Tags |