001    /**
002     * Copyright 2010-2013 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     */
016    package org.kuali.common.util.service;
017    
018    import java.util.List;
019    
020    public class SpringContext {
021    
022            String id;
023            String displayName;
024            List<String> locations;
025            List<Class<?>> annotatedClasses;
026            List<String> beanNames;
027            List<Object> beans;
028            PropertySourceContext propertySourceContext;
029    
030            public List<String> getLocations() {
031                    return locations;
032            }
033    
034            public void setLocations(List<String> locations) {
035                    this.locations = locations;
036            }
037    
038            public List<Class<?>> getAnnotatedClasses() {
039                    return annotatedClasses;
040            }
041    
042            public void setAnnotatedClasses(List<Class<?>> annotatedClasses) {
043                    this.annotatedClasses = annotatedClasses;
044            }
045    
046            public List<String> getBeanNames() {
047                    return beanNames;
048            }
049    
050            public void setBeanNames(List<String> beanNames) {
051                    this.beanNames = beanNames;
052            }
053    
054            public List<Object> getBeans() {
055                    return beans;
056            }
057    
058            public void setBeans(List<Object> beans) {
059                    this.beans = beans;
060            }
061    
062            public PropertySourceContext getPropertySourceContext() {
063                    return propertySourceContext;
064            }
065    
066            public void setPropertySourceContext(PropertySourceContext propertySourceContext) {
067                    this.propertySourceContext = propertySourceContext;
068            }
069    
070            public String getId() {
071                    return id;
072            }
073    
074            public void setId(String id) {
075                    this.id = id;
076            }
077    
078            public String getDisplayName() {
079                    return displayName;
080            }
081    
082            public void setDisplayName(String displayName) {
083                    this.displayName = displayName;
084            }
085    
086    }