9016ee5780ba7b2d8aa27af159b1748cb48607a9
[utils] / support / spring / src / test / java / org / wamblee / test / spring / TestSpringBeanFactory.java
1 /*
2  * Copyright 2005 the original author or authors.
3  *
4  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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.wamblee.test.spring;
17
18 import org.springframework.beans.BeansException;
19
20 import org.springframework.context.ApplicationContext;
21
22 import org.wamblee.general.BeanFactory;
23 import org.wamblee.general.BeanFactoryException;
24
25
26 /**
27  * Bean factory which uses Spring.
28  *
29  * @author Erik Brakkee
30  */
31 public class TestSpringBeanFactory implements BeanFactory {
32     /**
33      * DOCUMENT ME!
34      */
35     private ApplicationContext context;
36
37 /**
38      * Creates a new TestSpringBeanFactory object.
39      *
40      * @param aContext DOCUMENT ME!
41      */
42     public TestSpringBeanFactory(ApplicationContext aContext) {
43         context = aContext;
44     }
45
46     /* (non-Javadoc)
47      * @see org.wamblee.general.BeanFactory#find(java.lang.String)
48      */
49     /**
50      * DOCUMENT ME!
51      *
52      * @param aId DOCUMENT ME!
53      *
54      * @return DOCUMENT ME!
55      */
56     public Object find(String aId) {
57         return find(aId, Object.class);
58     }
59
60     /* (non-Javadoc)
61      * @see org.wamblee.general.BeanFactory#find(java.lang.Class)
62      */
63     /**
64      * DOCUMENT ME!
65      *
66      * @param <T> DOCUMENT ME!
67      * @param aClass DOCUMENT ME!
68      *
69      * @return DOCUMENT ME!
70      */
71     public <T> T find(Class<T> aClass) {
72         return find(aClass.getName(), aClass);
73     }
74
75     /* (non-Javadoc)
76      * @see org.wamblee.general.BeanFactory#find(java.lang.String, java.lang.Class)
77      */
78     /**
79      * DOCUMENT ME!
80      *
81      * @param <T> DOCUMENT ME!
82      * @param aId DOCUMENT ME!
83      * @param aClass DOCUMENT ME!
84      *
85      * @return DOCUMENT ME!
86      *
87      * @throws BeanFactoryException DOCUMENT ME!
88      */
89     public <T> T find(String aId, Class<T> aClass) {
90         try {
91             Object obj = context.getBean(aId, aClass);
92             assert obj != null;
93
94             return aClass.cast(obj);
95         } catch (BeansException e) {
96             throw new BeanFactoryException(e.getMessage(), e);
97         }
98     }
99 }