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

com.shedhack.thread.context.annotation.ThreadContext Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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