1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.service;
17
18 import java.util.List;
19
20
21
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 }