01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.net.groups;
06:
07: import com.tc.util.AbstractIdentifier;
08:
09: public class MessageID extends AbstractIdentifier {
10:
11: public static final MessageID NULL_ID = new MessageID();
12:
13: public MessageID(long id) {
14: super (id);
15: }
16:
17: private MessageID() {
18: super ();
19: }
20:
21: public String getIdentifierType() {
22: return "MessageID";
23: }
24:
25: }
|