com.avides.spring.enricher.configuration.EnrichingConfiguration 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 org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.avides.spring.enricher.service.EnrichedExecutor;
import com.avides.spring.enricher.service.EnricherService;
/**
* @author Martin Schumacher
* @since 1.0.0.RELEASE
*/
@Configuration
public class EnrichingConfiguration
{
@Bean
public EnricherService enricherService()
{
return new EnricherService();
}
@Bean
public EnrichedExecutor enrichedExecutor()
{
return new EnrichedExecutor();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy