KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > l2 > context > SyncObjectsRequest


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.l2.context;
5
6 import com.tc.async.api.EventContext;
7 import com.tc.net.groups.NodeID;
8
9 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 }
22
Popular Tags