Package org.alfresco.repo.domain.node
Class TransactionEntity
- java.lang.Object
-
- org.alfresco.repo.domain.node.TransactionEntity
-
- All Implemented Interfaces:
Serializable,Transaction
public class TransactionEntity extends Object implements Transaction, 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 StringgetChangeTxnId()LonggetCommitTimeMs()LonggetId()ServerEntitygetServer()LonggetVersion()voidsetChangeTxnId(String changeTxnId)voidsetCommitTimeMs(Long commitTimeMs)voidsetId(Long id)voidsetServer(ServerEntity server)voidsetVersion(Long version)StringtoString()
-
-
-
Method Detail
-
getId
public Long getId()
- Specified by:
getIdin interfaceTransaction
-
setId
public void setId(Long id)
-
getVersion
public Long getVersion()
-
setVersion
public void setVersion(Long version)
-
getServer
public ServerEntity getServer()
-
setServer
public void setServer(ServerEntity server)
-
getChangeTxnId
public String getChangeTxnId()
- Specified by:
getChangeTxnIdin interfaceTransaction
-
setChangeTxnId
public void setChangeTxnId(String changeTxnId)
-
getCommitTimeMs
public Long getCommitTimeMs()
- Specified by:
getCommitTimeMsin interfaceTransaction
-
setCommitTimeMs
public void setCommitTimeMs(Long commitTimeMs)
-
-