Skip to content

Commit

Permalink
EPMRPP-87537 || Update SuggestInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski committed Nov 9, 2023
1 parent efd5768 commit 129b39c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ public class SuggestInfo {

private String launchName;

private Long launchNumber;

private String issueType;

private Long relevantItem;
Expand Down Expand Up @@ -242,4 +244,12 @@ public Long getClusterId() {
public void setClusterId(Long clusterId) {
this.clusterId = clusterId;
}

public Long getLaunchNumber() {
return launchNumber;
}

public void setLaunchNumber(Long launchNumber) {
this.launchNumber = launchNumber;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public class SuggestRq {

private String launchName;

private Long launchNumber;

private Long project;

private AnalyzerConfig analyzerConfig;
Expand Down Expand Up @@ -118,4 +120,12 @@ public Set<IndexLog> getLogs() {
public void setLogs(Set<IndexLog> logs) {
this.logs = logs;
}

public Long getLaunchNumber() {
return launchNumber;
}

public void setLaunchNumber(Long launchNumber) {
this.launchNumber = launchNumber;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ private SuggestRq prepareSuggestRq(Launch launch, Project project) {
suggestRq.setLaunchName(launch.getName());
suggestRq.setProject(project.getId());
suggestRq.setAnalyzerConfig(getAnalyzerConfig(project));
suggestRq.setLaunchNumber(launch.getNumber());
return suggestRq;
}

Expand Down

0 comments on commit 129b39c

Please sign in to comment.