1 25 26 package org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged.ejb2view; 27 28 import java.rmi.RemoteException ; 29 30 import javax.ejb.CreateException ; 31 32 38 public interface ItfCMTEjb2ViewClient { 39 40 46 void testRemoteMandatoryException() throws RemoteException , CreateException ; 47 48 53 void testLocalMandatoryException() throws CreateException ; 54 55 61 void testRemoteNeverException() throws RemoteException , CreateException ; 62 63 68 void testLocalNeverException() throws CreateException ; 69 70 75 void testIdentity() throws RemoteException , CreateException ; 76 77 78 } 79 | Popular Tags |