1 25 package org.objectweb.easybeans.tests.common.ejbs.base; 26 27 import java.util.List ; 28 29 35 public interface ItfMethodInterceptor<T> { 36 37 40 Integer ORDER = new Integer (0); 41 42 47 List <T> withoutInterceptor(List <T> par); 48 49 55 List <T> withOneMethodInterceptor(List <T> par); 56 57 63 List <T> withTwoMethodInterceptors(List <T> par); 64 65 71 List <T> withFiveMethodInterceptors(List <T> par); 72 73 79 List <T> withFiveMethodInterceptorsInverse(List <T> par); 80 81 85 boolean checkPostbackInterceptors(); 86 87 93 List <T> withPrivateProtectedPublicInterceptors(List <T> par); 94 95 101 List <T> withPrivateInterceptors(List <T> par); 102 103 109 List <T> withProtectedInterceptors(List <T> par); 110 111 117 List <T> withPackageInterceptors(final List <Integer > par); 118 } 119 | Popular Tags |