comparison src/org/dancres/blitz/remote/transport/Read.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.remote.transport;
2
3 import java.io.Serializable;
4
5 import net.jini.core.transaction.Transaction;
6
7 import org.dancres.blitz.mangler.MangledEntry;
8
9 /**
10 */
11 public class Read implements Serializable {
12 private MangledEntry _entry;
13 private Transaction _txn;
14 private long _waitTime;
15
16 public MangledEntry getEntry() {
17 return _entry;
18 }
19
20 public Transaction getTxn() {
21 return _txn;
22 }
23
24 public long getWaitTime() {
25 return _waitTime;
26 }
27
28 public Read(MangledEntry anEntry, Transaction aTxn, long aWaitTime) {
29 _entry = anEntry;
30 _txn = aTxn;
31 _waitTime = aWaitTime;
32 }
33 }