![JAR search and dependency download from the Maven repository](/logo.png)
com.shedhack.thread.context.annotation.ThreadContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thread-context-handler Show documentation
Show all versions of thread-context-handler Show documentation
Context enabler, for helping with debugging/logging
package com.shedhack.thread.context.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Annotate methods that you wish to be enabled for setting the thread context.
* If you have some params that need to be hidden then mark them using the
* {@link com.shedhack.thread.context.annotation.Ignore} annotation.
*/
@Target({ElementType.METHOD})
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Documented
public @interface ThreadContext {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy