1 25 26 package org.objectweb.jonas.jtests.beans.ffolder; 27 28 import java.rmi.RemoteException ; 29 import javax.ejb.CreateException ; 30 import javax.ejb.EJBObject ; 31 import javax.ejb.FinderException ; 32 33 36 public interface Folder extends EJBObject { 37 public File newFile(String fname) throws RemoteException , CreateException ; 38 public File getFile(String fname) throws RemoteException , FinderException ; 39 public void sendRef(Folder f) throws RemoteException ; 40 public void sendInt(int i) throws RemoteException ; 41 public void sendRefTS(Folder f) throws RemoteException ; 42 public void sendIntTS(int i) throws RemoteException ; 43 public Folder getRef(Folder f) throws RemoteException ; 44 public int getInt(int i) throws RemoteException ; 45 public Folder getRefTS(Folder f) throws RemoteException ; 46 public int getIntTS(int i) throws RemoteException ; 47 } 48 | Popular Tags |