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

com.avides.spring.enricher.annotation.Enriched Maven / Gradle / Ivy

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