net.nemerosa.ontrack.model.support.ApplicationLogService 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.support;
import java.util.List;
/**
* This service is used to log messages at application level, to be seen by operation and administration people.
*
* Having a message here would mean that something is defective in the application or in its configuration.
*/
public interface ApplicationLogService {
/**
* Total list of messages
*/
int getLogEntriesTotal();
/**
* List of messages
*/
List getLogEntries(Page page);
/**
* Logs an entry
*/
void log(ApplicationLogEntry entry);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy