Package com.avoka.tm.vo
Class TxnCheckpoint
- java.lang.Object
-
- com.avoka.tm.vo.TxnCheckpoint
-
public class TxnCheckpoint extends Object
Provides a Transaction Delivery Checkpoint value object.- Since:
- 5.0.0
-
-
Constructor Summary
Constructors Constructor Description TxnCheckpoint()
TxnCheckpoint(String name, String description, String status, Date time)
Create a transaction delivery checkpoint value object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
The transaction delivery checkpoint description.String
getName()
The transaction delivery checkpoint name.String
getStatus()
The transaction delivery checkpoint status [ Registered | Completed | Error ].Date
getTime()
The transaction delivery checkpoint time.String
toString()
-
-
-
Method Detail
-
toString
public String toString()
-
getName
public String getName()
The transaction delivery checkpoint name.
-
getDescription
public String getDescription()
The transaction delivery checkpoint description.
-
getStatus
public String getStatus()
The transaction delivery checkpoint status [ Registered | Completed | Error ].
-
getTime
public Date getTime()
The transaction delivery checkpoint time.
-
-