Package org.alfresco.repo.domain.node
Class TransactionEntity
- java.lang.Object
-
- org.alfresco.repo.domain.node.TransactionEntity
-
- All Implemented Interfaces:
java.io.Serializable,Transaction
public class TransactionEntity extends java.lang.Object implements Transaction, java.io.Serializable
Bean to represent alf_transaction data.- Since:
- 3.4
- Author:
- Derek Hulley
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransactionEntity()Required default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetChangeTxnId()java.lang.LonggetCommitTimeMs()java.lang.LonggetId()ServerEntitygetServer()java.lang.LonggetVersion()voidsetChangeTxnId(java.lang.String changeTxnId)voidsetCommitTimeMs(java.lang.Long commitTimeMs)voidsetId(java.lang.Long id)voidsetServer(ServerEntity server)voidsetVersion(java.lang.Long version)java.lang.StringtoString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getId
public java.lang.Long getId()
- Specified by:
getIdin interfaceTransaction
-
setId
public void setId(java.lang.Long id)
-
getVersion
public java.lang.Long getVersion()
-
setVersion
public void setVersion(java.lang.Long version)
-
getServer
public ServerEntity getServer()
-
setServer
public void setServer(ServerEntity server)
-
getChangeTxnId
public java.lang.String getChangeTxnId()
- Specified by:
getChangeTxnIdin interfaceTransaction
-
setChangeTxnId
public void setChangeTxnId(java.lang.String changeTxnId)
-
getCommitTimeMs
public java.lang.Long getCommitTimeMs()
- Specified by:
getCommitTimeMsin interfaceTransaction
-
setCommitTimeMs
public void setCommitTimeMs(java.lang.Long commitTimeMs)
-
-