1 22 package org.jboss.ejb3.test.interceptors2; 23 24 import javax.ejb.Remote ; 25 26 31 @Remote  32 public interface OrderedSLSBRemote 33 { 34 void methodWithClassLevel(); 35 36 void methodWithOwn(String s, int i); 37 38 void overLoadedMethod(String s); 39 40 void overLoadedMethod(long l); 41 42 void overLoadedMethod(); 43 44 void methodNotSpecifyingAll(); 45 } 46 | Popular Tags |