01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.l2.objectserver;
06:
07: import com.tc.l2.msg.GCResultMessage;
08: import com.tc.net.groups.NodeID;
09:
10: public class NonReplicatedObjectManager implements
11: ReplicatedObjectManager {
12:
13: public void query(NodeID nodeID) {
14: // Nop
15: }
16:
17: public boolean relayTransactions() {
18: return false;
19: }
20:
21: public void sync() {
22: // Nop
23: }
24:
25: public void clear(NodeID nodeID) {
26: // Nop
27: }
28:
29: public void handleGCResult(GCResultMessage message) {
30: throw new UnsupportedOperationException();
31: }
32:
33: }
|