1 /*2 * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright3 * notice. All rights reserved.4 */5 package com.tc.l2.objectserver;6 7 import com.tc.net.groups.NodeID;8 9 public class NonReplicatedObjectManager implements ReplicatedObjectManager {10 11 public void query(NodeID nodeID) {12 // Nop13 }14 15 public boolean relayTransactions() {16 return false;17 }18 19 public void sync() {20 // Nop21 }22 23 }24