001/**
002 * Copyright 2005-2016 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.xml.spring;
017
018import org.springframework.context.annotation.Bean;
019import org.springframework.context.annotation.Configuration;
020import org.springframework.context.annotation.ImportResource;
021import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
022
023/**
024 * Central configuration file for launching a local version of Rice for the workflow XML ingestion process.
025 * 
026 * @author Kuali Rice Team (rice.collab@kuali.org)
027 */
028@Configuration
029@ImportResource({ LaunchRiceConfig.JTA, LaunchRiceConfig.DATASOURCE, LaunchRiceConfig.RICE })
030public class LaunchRiceConfig {
031
032    /**
033     * The location of the JTA Spring beans.
034     */
035        protected static final String JTA = "classpath:org/kuali/rice/core/RiceJTASpringBeans.xml";
036
037    /**
038     * The location of the data source Spring beans.
039     */
040        protected static final String DATASOURCE = "classpath:org/kuali/rice/core/RiceDataSourceSpringBeans.xml";
041
042    /**
043     * The location of the Rice Spring beans.
044     */
045        protected static final String RICE = "classpath:org/kuali/rice/config/RiceSpringBeans.xml";
046
047    /**
048     * Returns a new instance of a {@link PropertySourcesPlaceholderConfigurer}.
049     *
050     * @return a new instance of a {@link PropertySourcesPlaceholderConfigurer}
051     */
052        @Bean
053        public PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
054                return new PropertySourcesPlaceholderConfigurer();
055        }
056
057}