Skip to content

Commit

Permalink
Merge branch 'refs/heads/develop' into feature/orgs
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Jul 23, 2024
2 parents 6fd8a43 + 24ea814 commit b7f57fd
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,20 @@ public class ClusterInfoResource {
@JsonProperty(value = "metadata")
private Map<String, Object> metadata;

@JsonProperty(value = "matchedTests")
private Long matchedTests;

public ClusterInfoResource() {
}

public ClusterInfoResource(Long id, Long index, Long launchId, String message, Long matchedTests) {
this.id = id;
this.index = index;
this.launchId = launchId;
this.message = message;
this.matchedTests = matchedTests;
}

public Long getId() {
return id;
}
Expand Down Expand Up @@ -83,4 +94,12 @@ public Map<String, Object> getMetadata() {
public void setMetadata(Map<String, Object> metadata) {
this.metadata = metadata;
}

public Long getMatchedTests() {
return matchedTests;
}

public void setMatchedTests(Long matchedTests) {
this.matchedTests = matchedTests;
}
}

0 comments on commit b7f57fd

Please sign in to comment.