KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > tx > TransactionID


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.object.tx;
5
6 import com.tc.util.AbstractIdentifier;
7
8 /**
9  * @author steve
10  */

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