com.avides.spring.enricher.annotation.Enriched Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-enricher Show documentation
Show all versions of spring-enricher Show documentation
Enables simple enriching of objects in spring-projects
The newest version!
package com.avides.spring.enricher.annotation;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* @author Martin Schumacher
* @since 1.0.0.RELEASE
*/
@Target(METHOD)
@Retention(RUNTIME)
public @interface Enriched
{
Class>[] value() default
{};
Class>[] ignore() default
{};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy