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
-
-
Field Summary
Fields Modifier and Type Field Description String
description
The transaction delivery checkpoint description.String
name
The transaction delivery checkpoint name.String
status
The transaction delivery checkpoint status [ Registered | Completed | Error ].Date
time
The transaction delivery checkpoint time.
-
Constructor Summary
Constructors Constructor Description 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()
-
-
-
Field Detail
-
name
public final String name
The transaction delivery checkpoint name.
-
description
public final String description
The transaction delivery checkpoint description.
-
status
public final String status
The transaction delivery checkpoint status [ Registered | Completed | Error ].
-
time
public final Date time
The transaction delivery checkpoint time.
-
-
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.
-
-