1 25 package org.objectweb.easybeans.tests.common.ejbs.base; 26 27 import java.util.List ; 28 29 35 public interface ItfClassInterceptor<T> { 36 37 40 Integer ORDER = new Integer (0); 41 42 48 List <T> withoutMethodInterceptor(List <T> par); 49 50 56 List <T> withExcludeDefaultInterceptor(List <T> par); 57 58 64 List <T> withExcludeClassInterceptor(List <T> par); 65 66 73 List <T> excludeClassAndOneMtd(List <T> par); 74 75 82 List <T> excludeClassDefAndFourMtd(List <T> par); 83 84 90 List <T> withOneMethodInterceptor(List <T> par); 91 92 98 List <T> withThreeMethodInterceptor(List <T> par); 99 100 } 101 | Popular Tags |