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

br.com.jhonsapp.notifier.producer.NotifierProducer Maven / Gradle / Ivy

package br.com.jhonsapp.notifier.producer;

import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import br.com.jhonsapp.notifier.abstraction.Notifier;
import br.com.jhonsapp.notifier.email.NotifierByEmail;

@Configuration
public class NotifierProducer {

	@Bean @Qualifier(Notifier.EMAIL)
	public Notifier notifierByEmail(){
		return new NotifierByEmail();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy