org.resthub.web.log.LogStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resthub-web-server Show documentation
Show all versions of resthub-web-server Show documentation
RESThub support for REST webservices based on Spring MVC
package org.resthub.web.log;
/**
* Implement this interface to define the behaviour of the log controller
*/
public interface LogStrategy {
void logError(Log log);
void logWarn(Log log);
void logInfo(Log log);
void logDebug(Log log);
}