1 23 24 package com.sun.ejb.containers; 25 26 27 import com.sun.ejb.ReadOnlyBeanNotifier; 28 29 import javax.rmi.PortableRemoteObject ; 30 31 import java.util.logging.*; 32 import com.sun.logging.*; 33 34 39 40 public final class ReadOnlyBeanNotifierImpl 41 implements java.io.Serializable , 42 com.sun.appserv.ejb.ReadOnlyBeanNotifier, 43 com.sun.ejb.ReadOnlyBeanNotifier { 45 private ReadOnlyEJBHome readOnlyBeanHome = null; 46 47 public ReadOnlyBeanNotifierImpl(ReadOnlyEJBHome home) 48 throws java.rmi.RemoteException 49 { 50 super(); 51 this.readOnlyBeanHome = home; 52 } 53 54 public void refresh (Object primaryKey) 55 throws java.rmi.RemoteException 56 { 57 readOnlyBeanHome._refresh_com_sun_ejb_containers_read_only_bean_(primaryKey); 58 } 59 60 public void refreshAll() throws java.rmi.RemoteException 61 { 62 readOnlyBeanHome._refresh_All(); 63 } 64 65 } 66 67 | Popular Tags |