1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.aws.ec2;
17
18 import org.kuali.common.util.spring.PropertySourceUtils;
19 import org.kuali.common.util.spring.service.PropertySourceConfig;
20 import org.springframework.context.annotation.Bean;
21 import org.springframework.context.annotation.Configuration;
22 import org.springframework.core.env.PropertySource;
23
24 @Configuration
25 public class InvokeEC2ServicePSC implements PropertySourceConfig {
26
27 @Override
28 @Bean
29 public PropertySource<?> propertySource() {
30 return PropertySourceUtils.getDefaultPropertySource();
31 }
32 }