aboutsummaryrefslogtreecommitdiff
path: root/juick-notifications/src/main/java/com/juick/components/configuration/NotificationsAppConfiguration.java
blob: cb921fe5cdd1a16d65ed0ede2e6497b175ac1c8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.juick.components.configuration;

import com.juick.components.Notifications;
import com.juick.server.component.JuickServerComponent;
import com.juick.server.component.JuickServerReconnectManager;
import com.juick.server.configuration.BaseWebConfiguration;
import org.springframework.context.annotation.*;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * Created by aalexeev on 11/12/16.
 */
@Configuration
@EnableWebMvc
@EnableScheduling
@ComponentScan(basePackages = "com.juick.components.service")
@Import({ APNSConfiguration.class, MPNSConfiguration.class,
        GCMConfiguration.class, JuickServerWebsocketConfiguration.class, BaseWebConfiguration.class})
public class NotificationsAppConfiguration implements WebMvcConfigurer {

    @Bean
    public JuickServerComponent juickServerComponent() {
        return new JuickServerComponent();
    }
    @Bean
    public JuickServerReconnectManager juickServerReconnectManager() {
        return new JuickServerReconnectManager();
    }

    @Bean
    public Notifications push() {
        return new Notifications();
    }
}