1 23 24 package com.sun.ejb.spi.distributed; 25 26 36 public interface DistributedReadOnlyBeanService { 37 38 46 public void setDistributedReadOnlyBeanNotifier( 47 DistributedReadOnlyBeanNotifier notifier); 48 49 59 public void addReadOnlyBeanRefreshEventHandler( 60 long ejbID, ClassLoader loader, 61 ReadOnlyBeanRefreshEventHandler handler); 62 63 69 public void removeReadOnlyBeanRefreshEventHandler(long ejbID); 70 71 77 public void notifyRefresh(long ejbID, Object pk); 78 79 84 public void notifyRefreshAll(long ejbID); 85 86 93 public void handleRefreshRequest(long ejbID, byte[] pkData); 94 95 101 public void handleRefreshAllRequest(long ejbID); 102 103 } 104 | Popular Tags |