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

org.ikasan.notification.configuration.EmailNotificationParamsFactory Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.ikasan.notification.configuration;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class EmailNotificationParamsFactory {

    @Bean
    @ConfigurationProperties(prefix = "scheduler.email.notification.configuration", ignoreUnknownFields = true)
    public EmailNotificationParamsConfiguration emailNotificationParamsConfiguration() {
        return new EmailNotificationParamsConfiguration();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy