blob: f849b15972e1bd389d5df4fe7383aa8cd7f59b9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.juick.components.configuration;
import com.juick.components.MPNSClient;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* Created by vital on 29.03.2017.
*/
@Configuration
public class MPNSConfiguration {
@Bean
public MPNSClient mpnsClient() {
return new MPNSClient();
}
}
|