All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tracee.contextlogger.contextprovider.api.TraceeContextProviderMethod Maven / Gradle / Ivy

There is a newer version: 0.11.0
Show newest version
package io.tracee.contextlogger.contextprovider.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 TraceeContextProvider} annotation.
 * 

* Created by Tobias Gindler, holisticon AG on 14.03.14. */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {ElementType.METHOD}) public @interface TraceeContextProviderMethod { String displayName(); boolean enabledPerDefault() default false; int order() default 0; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy