aboutsummaryrefslogtreecommitdiff
path: root/juick-notifications/src/main/java/com/juick/components/configuration/NotificationsAppConfiguration.java
blob: 5ccacf60680a57a1e7e0a848e9fab18f4fbc5249 (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.components.service.JuickServerComponent;
import com.juick.components.service.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();
    }
}