de.bund.bva.isyfact.logging.annotation.Systemgrenze 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.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Diese Annotation kennzeichnet eine Systemgrenze, an der die Bean boundaryLogInterceptor
loggt.
*/
@Retention(RUNTIME)
@Target(TYPE)
public @interface Systemgrenze {
}