KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > net > protocol > tcm > ChannelID


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

4 package com.tc.net.protocol.tcm;
5
6 import com.tc.util.AbstractIdentifier;
7
8 /**
9  * Identifier for a client session
10  *
11  * @author steve
12  */

13 public class ChannelID extends AbstractIdentifier {
14   public static final ChannelID NULL_ID = new ChannelID();
15
16   public ChannelID(long id) {
17     super(id);
18   }
19
20   private ChannelID() {
21     super();
22   }
23
24   public String JavaDoc getIdentifierType() {
25     return "ChannelID";
26   }
27 }
Popular Tags