View Javadoc

1   /**
2    * Copyright 2010-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.util.service;
17  
18  import java.util.List;
19  
20  public class SpringContext {
21  
22  	String id;
23  	String displayName;
24  	List<String> locations;
25  	List<Class<?>> annotatedClasses;
26  	List<String> beanNames;
27  	List<Object> beans;
28  	PropertySourceContext propertySourceContext;
29  
30  	public List<String> getLocations() {
31  		return locations;
32  	}
33  
34  	public void setLocations(List<String> locations) {
35  		this.locations = locations;
36  	}
37  
38  	public List<Class<?>> getAnnotatedClasses() {
39  		return annotatedClasses;
40  	}
41  
42  	public void setAnnotatedClasses(List<Class<?>> annotatedClasses) {
43  		this.annotatedClasses = annotatedClasses;
44  	}
45  
46  	public List<String> getBeanNames() {
47  		return beanNames;
48  	}
49  
50  	public void setBeanNames(List<String> beanNames) {
51  		this.beanNames = beanNames;
52  	}
53  
54  	public List<Object> getBeans() {
55  		return beans;
56  	}
57  
58  	public void setBeans(List<Object> beans) {
59  		this.beans = beans;
60  	}
61  
62  	public PropertySourceContext getPropertySourceContext() {
63  		return propertySourceContext;
64  	}
65  
66  	public void setPropertySourceContext(PropertySourceContext propertySourceContext) {
67  		this.propertySourceContext = propertySourceContext;
68  	}
69  
70  	public String getId() {
71  		return id;
72  	}
73  
74  	public void setId(String id) {
75  		this.id = id;
76  	}
77  
78  	public String getDisplayName() {
79  		return displayName;
80  	}
81  
82  	public void setDisplayName(String displayName) {
83  		this.displayName = displayName;
84  	}
85  
86  }