eu.ginere.base.util.notification.NotificationImplInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ginere-base Show documentation
Show all versions of ginere-base Show documentation
Base utilities for java projects
package eu.ginere.base.util.notification;
public interface NotificationImplInterface {
public interface Level {
public boolean isEnabled();
public void notify(String message,Throwable e);
}
public Level getDebug();
public Level getInfo();
public Level getWarn();
public Level getError();
public Level getFatal();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy