1 4 package com.tc.object.tx; 5 6 import com.tc.util.AbstractIdentifier; 7 8 11 public class TxnBatchID extends AbstractIdentifier { 12 13 public static final TxnBatchID NULL_BATCH_ID = new TxnBatchID(); 14 15 private TxnBatchID() { 16 super(); 17 } 18 19 public TxnBatchID(long batchID) { 20 super(batchID); 21 } 22 23 public String getIdentifierType() { 24 return "TxnBatchID"; 25 } 26 27 } 28 | Popular Tags |