Skip to content

Commit

Permalink
us #584004 : Branch Compare : expand SDK (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dshmaya authored and m-seldin committed Mar 12, 2018
1 parent 3725ea3 commit 5819979
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,12 @@ public interface CIEvent extends DTOBase {
Boolean getTestResultExpected();

CIEvent setTestResultExpected(boolean expected);

String getCommonHashId();

CIEvent setCommonHashId(String commonHashId);

String getBranchName();

CIEvent setBranchName(String commonHashId);
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ class CIEventImpl implements CIEvent {
private Boolean testResultExpected;
private String projectDisplayName;
private PhaseType phaseType;
private String commonHashId;
private String branchName;


public PhaseType getPhaseType() {
return phaseType;
Expand Down Expand Up @@ -166,6 +169,26 @@ public CIEvent setScmData(SCMData scmData) {
return this;
}

public String getCommonHashId() {
return commonHashId;
}

public CIEvent setCommonHashId(String commonHashId) {
this.commonHashId = commonHashId;
return this;
}



public String getBranchName() {
return branchName;
}

public CIEvent setBranchName(String branchName) {
this.branchName = branchName;
return this;
}

@Override
public Boolean getTestResultExpected() {
return testResultExpected;
Expand Down

0 comments on commit 5819979

Please sign in to comment.