1 23 24 package com.sun.ejb.containers; 25 26 import java.util.logging.*; 27 import com.sun.logging.*; 28 29 32 33 public final class ReadOnlyBeanLocalNotifierImpl 34 implements com.sun.appserv.ejb.ReadOnlyBeanLocalNotifier, 35 com.sun.ejb.ReadOnlyBeanLocalNotifier { 37 38 private ReadOnlyBeanContainer robContainer; 39 40 public ReadOnlyBeanLocalNotifierImpl(ReadOnlyBeanContainer container) { 41 this.robContainer = container; 42 } 43 44 public void refresh (Object primaryKey) { 45 robContainer.setRefreshFlag(primaryKey); 46 } 47 48 public void refreshAll() { 49 robContainer.refreshAll(); 50 } 51 } 52 53 | Popular Tags |