1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.spring.service;
17
18 import java.util.List;
19 import java.util.Map;
20
21 import org.springframework.core.env.PropertySource;
22
23 public interface PropertySourceService {
24
25 PropertySource<?> getPropertySource(Map<String, Object> beans, List<String> defaultProfiles, List<String> activeProfiles, Class<PropertySourceConfig> config);
26
27 PropertySource<?> getPropertySource(Class<PropertySourceConfig> config);
28
29 List<PropertySource<?>> getPropertySources(Map<String, Object> beans, List<String> defaultProfiles, List<String> activeProfiles, Class<?> config);
30
31 List<PropertySource<?>> getPropertySources(Map<String, Object> beans, List<String> defaultProfiles, List<String> activeProfiles, String location);
32
33 }