1 19 20 package org.netbeans.modules.j2ee.dd.api.ejb; 21 22 26 public interface InterceptorOrder { 27 28 int addInterceptorClass(String value); 29 String [] getInterceptorClass(); 30 String getInterceptorClass(int index); 31 int removeInterceptorClass(String value); 32 void setInterceptorClass(int index, String value); 33 void setInterceptorClass(String [] value); 34 int sizeInterceptorClass(); 35 36 } 37 | Popular Tags |