net.nemerosa.ontrack.model.events.EventQueryService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.events;
import net.nemerosa.ontrack.model.structure.ID;
import net.nemerosa.ontrack.model.structure.ProjectEntityType;
import java.util.List;
/**
* Service used to get access to the list of events.
*/
public interface EventQueryService {
List getEvents(int offset, int count);
List getEvents(ProjectEntityType entityType, ID entityId, int offset, int count);
List getEvents(ProjectEntityType entityType, ID entityId, EventType eventType, int offset, int count);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy