1 23 24 package com.sun.ejb.containers; 25 26 35 36 public abstract class ReadOnlyEJBHomeImpl 37 extends EJBHomeImpl 38 implements ReadOnlyEJBHome 39 { 40 private ReadOnlyBeanContainer robContainer; 41 42 public ReadOnlyEJBHomeImpl() 43 throws java.rmi.RemoteException 44 { 45 super(); 46 } 47 48 51 final void setReadOnlyBeanContainer(ReadOnlyBeanContainer container) { 52 this.robContainer = container; 53 } 54 55 56 57 58 59 60 public com.sun.ejb.ReadOnlyBeanNotifier getReadOnlyBeanNotifier() 62 throws java.rmi.RemoteException 63 { 64 throw new java.rmi.RemoteException ("Internal ERROR: " 65 + " getReadOnlyBeanNotifier() called"); 66 } 67 68 public void _refresh_com_sun_ejb_containers_read_only_bean_(Object primaryKey) 69 throws java.rmi.RemoteException 70 { 71 robContainer.setRefreshFlag(primaryKey); 72 } 73 74 public void _refresh_All() throws java.rmi.RemoteException 75 { 76 robContainer.refreshAll(); 77 } 78 } 79 80 | Popular Tags |