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

net.nemerosa.ontrack.model.events.EventQueryService Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
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