1 16 package org.mortbay.j2ee.session; 17 18 20 public class 21 SerializableEJBHome 22 implements java.io.Serializable  23 { 24 javax.ejb.HomeHandle _handle=null; 25 26 protected 27 SerializableEJBHome() 28 throws java.rmi.RemoteException  29 { 30 } 31 32 SerializableEJBHome(javax.ejb.EJBHome home) 33 throws java.rmi.RemoteException  34 { 35 _handle=home.getHomeHandle(); 36 } 37 38 javax.ejb.EJBHome  39 toEJBHome() 40 throws java.rmi.RemoteException  41 { 42 return _handle.getEJBHome(); 43 } 44 } 45 | Popular Tags |