
com.epam.reportportal.events.ElementsDeletedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-events Show documentation
Show all versions of commons-events Show documentation
EPAM Report portal. Events
The newest version!
package com.epam.reportportal.events;
import org.springframework.context.ApplicationEvent;
/**
* @author Pavel Bortnik
*/
public class ElementsDeletedEvent extends ApplicationEvent {
private final Long projectId;
private final long numberOfDeletedElements;
public ElementsDeletedEvent(Object source, Long projectId, long numberOfDeletedElements) {
super(source);
this.projectId = projectId;
this.numberOfDeletedElements = numberOfDeletedElements;
}
public Long getProjectId() {
return projectId;
}
public long getNumberOfDeletedElements() {
return numberOfDeletedElements;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy