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  /**
21   * @deprecated
22   */
23  @Deprecated
24  public class SpringContext {
25  
26  	String id;
27  	String displayName;
28  	List<String> locations;
29  	List<Class<?>> annotatedClasses;
30  	List<String> beanNames;
31  	List<Object> beans;
32  	PropertySourceContext propertySourceContext;
33  
34  	public List<String> getLocations() {
35  		return locations;
36  	}
37  
38  	public void setLocations(List<String> locations) {
39  		this.locations = locations;
40  	}
41  
42  	public List<Class<?>> getAnnotatedClasses() {
43  		return annotatedClasses;
44  	}
45  
46  	public void setAnnotatedClasses(List<Class<?>> annotatedClasses) {
47  		this.annotatedClasses = annotatedClasses;
48  	}
49  
50  	public List<String> getBeanNames() {
51  		return beanNames;
52  	}
53  
54  	public void setBeanNames(List<String> beanNames) {
55  		this.beanNames = beanNames;
56  	}
57  
58  	public List<Object> getBeans() {
59  		return beans;
60  	}
61  
62  	public void setBeans(List<Object> beans) {
63  		this.beans = beans;
64  	}
65  
66  	public PropertySourceContext getPropertySourceContext() {
67  		return propertySourceContext;
68  	}
69  
70  	public void setPropertySourceContext(PropertySourceContext propertySourceContext) {
71  		this.propertySourceContext = propertySourceContext;
72  	}
73  
74  	public String getId() {
75  		return id;
76  	}
77  
78  	public void setId(String id) {
79  		this.id = id;
80  	}
81  
82  	public String getDisplayName() {
83  		return displayName;
84  	}
85  
86  	public void setDisplayName(String displayName) {
87  		this.displayName = displayName;
88  	}
89  
90  }