Searched defs:ejbID (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/distributed/
H A DDistributedReadOnlyBeanNotifier.java57 * @param ejbID the ejbID that uniquely identifies the container
60 public void notifyRefresh(long ejbID, byte[] pk); argument
65 * @param ejbID the ejbID that uniquely identifies the container
68 public void notifyRefreshAll(long ejbID); argument
H A DDistributedReadOnlyBeanService.java70 * @param ejbID the ejbID that uniquely identifies the container
77 long ejbID, ClassLoader loader,
84 * @param ejbID
86 public void removeReadOnlyBeanRefreshEventHandler(long ejbID); argument
91 * @param ejbID the ejbID that uniquely identifies the container
94 public void notifyRefresh(long ejbID, Object pk); argument
99 * @param ejbID the ejbID tha
76 addReadOnlyBeanRefreshEventHandler( long ejbID, ClassLoader loader, ReadOnlyBeanRefreshEventHandler handler) argument
101 notifyRefreshAll(long ejbID) argument
110 handleRefreshRequest(long ejbID, byte[] pkData) argument
118 handleRefreshAllRequest(long ejbID) argument
[all...]
H A DDistributedReadOnlyBeanServiceImpl.java76 long ejbID, ClassLoader loader,
78 refreshHandlers.put(ejbID, new ReadOnlyBeanRefreshHandlerInfo(
79 ejbID, loader, handler));
81 + ejbID + "; " + handler);
84 public void removeReadOnlyBeanRefreshEventHandler(long ejbID) { argument
85 refreshHandlers.remove(ejbID);
88 public void notifyRefresh(long ejbID, Object pk) { argument
102 robNotifier.notifyRefresh(ejbID, pkData);
117 + "for notifyRefresh: " + ejbID);
122 public void notifyRefreshAll(long ejbID) { argument
75 addReadOnlyBeanRefreshEventHandler( long ejbID, ClassLoader loader, ReadOnlyBeanRefreshEventHandler handler) argument
134 handleRefreshRequest(long ejbID, byte[] pkData) argument
138 handleRefreshAllRequest(long ejbID) argument
142 refreshRequestReceived(boolean refreshAll, long ejbID, byte[] pkData) argument
[all...]
H A DReadOnlyBeanMessageCallBack.java94 long ejbID = bytesToLong(payload, 0);
96 _logger.log(Level.WARNING, "ReadOnlyBeanMessageCallBack: " + " Got message for ejbID: " + ejbID);
97 _readOnlyBeanService.handleRefreshAllRequest(ejbID);
101 _readOnlyBeanService.handleRefreshRequest(ejbID, pkData);
102 _logger.log(Level.WARNING, "ReadOnlyBeanMessageCallBack: " + " Handled message for ejbID: " + ejbID);
112 * @param ejbID
113 * the ejbID that uniquely identifies the container
117 public void notifyRefresh(long ejbID, byt argument
140 notifyRefreshAll(long ejbID) argument
[all...]

Completed in 13 milliseconds