1 23 package com.sun.enterprise; 24 25 import java.util.Set ; 26 27 import java.rmi.Remote ; 28 import javax.ejb.EJBObject ; 29 import javax.ejb.EJBHome ; 30 31 37 public interface RemoteReferenceFactory { 38 39 54 Remote createRemoteReference(byte[] instanceKey); 55 56 57 72 EJBHome createHomeReference(byte[] homeKey); 73 74 83 void destroyReference(Remote remoteRef, Remote remoteObj); 84 85 89 public void destroy(); 90 91 92 public boolean hasSameContainerID(org.omg.CORBA.Object ref) 93 throws Exception ; 94 95 public void setRepositoryIds(Class homeIntf, Class remoteIntf); 96 97 public void cleanupClass(Class clazz); 98 99 } 100 101 | Popular Tags |