001package org.kuali.common.util.properties.spring;
002
003import org.kuali.common.util.spring.PropertySourceUtils;
004import org.kuali.common.util.spring.service.PropertySourceConfig;
005import org.springframework.context.annotation.Bean;
006import org.springframework.context.annotation.Configuration;
007import org.springframework.core.env.PropertySource;
008
009@Configuration
010public class DefaultPropertySourceConfig implements PropertySourceConfig {
011
012        @Override
013        @Bean
014        public PropertySource<?> propertySource() {
015                return PropertySourceUtils.getDefaultPropertySource();
016        }
017
018}