1 4 package com.tc.net.protocol.tcm; 5 6 import com.tc.util.AbstractIdentifier; 7 8 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 getIdentifierType() { 25 return "ChannelID"; 26 } 27 } | Popular Tags |