Skip to content

Commit

Permalink
EPMRPP-90623 || Provide Link to launch via LaunchFinishedPluginEvent (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski authored May 20, 2024
1 parent 8a4048c commit 9bc4735
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@ public class LaunchFinishedPluginEvent extends LaunchEvent<Long> {

private final Long projectId;

private String launchLink;

public LaunchFinishedPluginEvent(Long source, Long projectId) {
super(source);
this.projectId = projectId;
}

public LaunchFinishedPluginEvent(Long source, Long projectId, String launchLink) {
this(source, projectId);
this.launchLink = launchLink;
}

public Long getProjectId() {
return projectId;
}

public String getLaunchLink() {
return launchLink;
}
}

0 comments on commit 9bc4735

Please sign in to comment.