1 25 package org.objectweb.easybeans.tests.common.ejbs.base; 26 27 import java.util.List ; 28 29 30 36 public interface ItfSimpleBean<T>{ 37 38 41 Integer ORDER = new Integer (0); 42 43 46 Integer EMBEDDED_INTERCEPTOR = new Integer (-1); 47 48 53 List <T> withInterceptors(List <T> par); 54 55 60 List <T> withInterceptorsInheritance(List <T> par); 61 } 62 | Popular Tags |