1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.spring;
17
18 import org.kuali.student.r1.common.dictionary.service.DictionaryService;
19 import org.kuali.student.r2.common.messages.service.MessageService;
20 import org.springframework.beans.factory.annotation.Autowired;
21
22
23
24
25
26 public class TestBean {
27
28 @Autowired
29 private DictionaryService dictionaryService;
30
31 @Autowired
32 private MessageService messageService;
33
34
35
36
37 public TestBean() {
38 }
39
40
41
42
43 public DictionaryService getDictionaryService() {
44 return dictionaryService;
45 }
46
47
48
49
50 public MessageService getMessageService() {
51 return messageService;
52 }
53
54
55
56
57 public void setDictionaryService(DictionaryService dictionaryService) {
58 this.dictionaryService = dictionaryService;
59 }
60
61
62
63
64 public void setMessageService(MessageService messageService) {
65 this.messageService = messageService;
66 }
67
68
69
70
71
72
73 }