
de.holisticon.util.tracee.contextlogger.api.TraceeContextLogProviderMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracee-context-logger-impl Show documentation
Show all versions of tracee-context-logger-impl Show documentation
Please refer to https://github.com/holisticon/tracee.
The newest version!
package de.holisticon.util.tracee.contextlogger.api;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is used to mark methods that provide context information for context logging.
* This annotation must reside in classes that are annotated with the
* {@link TraceeContextLogProvider} annotation.
*
* Created by Tobias Gindler, holisticon AG on 14.03.14.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value = { ElementType.METHOD })
public @interface TraceeContextLogProviderMethod {
String displayName();
String propertyName();
int order() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy