All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.epam.reportportal.events.ElementsDeletedEvent Maven / Gradle / Ivy

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