01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.l2.context;
05:
06: import com.tc.async.api.EventContext;
07: import com.tc.net.groups.NodeID;
08:
09: public class SyncObjectsRequest implements EventContext {
10:
11: private final NodeID nodeID;
12:
13: public SyncObjectsRequest(NodeID nodeID) {
14: this .nodeID = nodeID;
15: }
16:
17: public NodeID getNodeID() {
18: return nodeID;
19: }
20:
21: }
|