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 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 }