diff --git a/src/main/java/com/epam/reportportal/extension/event/LaunchFinishedPluginEvent.java b/src/main/java/com/epam/reportportal/extension/event/LaunchFinishedPluginEvent.java index f95f6bd..d99993b 100644 --- a/src/main/java/com/epam/reportportal/extension/event/LaunchFinishedPluginEvent.java +++ b/src/main/java/com/epam/reportportal/extension/event/LaunchFinishedPluginEvent.java @@ -7,12 +7,23 @@ public class LaunchFinishedPluginEvent extends LaunchEvent { 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; + } }