com.avides.spring.enricher.configuration.EnableEnriching 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.configuration;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.springframework.context.annotation.Import;
/**
* @author Martin Schumacher
* @since 1.0.0.RELEASE
*/
@Retention(RUNTIME)
@Target(TYPE)
@Import(EnrichingConfiguration.class)
public @interface EnableEnriching
{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy