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

net.nemerosa.ontrack.model.support.ApplicationLogService Maven / Gradle / Ivy

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