View Javadoc

1   /*
2    * Copyright 2012 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.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   * @author Kuali Student Team
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  }