de.bund.bva.isyfact.logging.config.IsyLoggingComponentLoggerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isy-logging Show documentation
Show all versions of isy-logging Show documentation
Stellt eine Komponente für das Logging bereit.
The newest version!
package de.bund.bva.isyfact.logging.config;
/**
* Properties, die das Loggen an Komponentengrenzen konfigurieren.
*/
public class IsyLoggingComponentLoggerProperties extends AbstractBoundaryLoggerProperties {
/**
* Erzeugt eine neue Instanz der Konfigurationsparameter.
*/
public IsyLoggingComponentLoggerProperties() {
// Default-Werte setzen
setPointcut("@within(de.bund.bva.isyfact.logging.annotation.Komponentengrenze)");
setLoggeDauer(false);
setLoggeAufruf(false);
setLoggeErgebnis(false);
setLoggeDaten(false);
setLoggeDatenBeiException(false);
}
}