![JAR search and dependency download from the Maven repository](/logo.png)
com.shedhack.thread.context.annotation.Ignore 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;
/**
* This annotation works in conjuction with {@link com.shedhack.thread.context.annotation.ThreadContext}.
* For any params that may contain sensitive values such as password then mark those params using this
* annotation.
*/
@Target({ElementType.PARAMETER})
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Documented
public @interface Ignore {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy