Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/TransactionRecord.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/TransactionRecord.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/TransactionRecord.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/TransactionRecord.java
index b1b05465b97..27e8dfbbfb1 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/TransactionRecord.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/TransactionRecord.java
@@ -36,12 +36,13 @@ public class TransactionRecord extends BaseId implements TransactionToken, Adapt
private Long buildId;
public TransactionRecord(Long id, BranchId branch, String comment, Date time, UserId authorArtId, Long commitArtId, TransactionDetailsType txType, Long buildId) {
+ public TransactionRecord(Long id, BranchId branch, String comment, Date time, UserId author, Long commitArtId, TransactionDetailsType txType, , Long buildId) {
super(id);
this.branch = branch;
this.buildId = buildId;
this.comment = Strings.intern(comment);
this.time = time;
- this.authorArtId = authorArtId;
+ this.author = author;
this.commitArtId = commitArtId;
this.txType = txType;
}
@@ -60,10 +61,10 @@ public class TransactionRecord extends BaseId implements TransactionToken, Adapt
}
public UserId getAuthor() {
- return authorArtId;
+ return author;
}
- public Long getCommit() {
+ public Long getCommitArtId() {
return commitArtId;
}
@@ -79,8 +80,8 @@ public class TransactionRecord extends BaseId implements TransactionToken, Adapt
this.time = time;
}
- public void setAuthor(UserId authorArtId) {
- this.authorArtId = authorArtId;
+ public void setAuthor(UserId author) {
+ this.author = author;
}
public void setCommit(Long commitArtId) {

Back to the top