eda621102c2dbfccbc950b5bcc523b4358d11059
[utils] / support / src / org / wamblee / general / SpringBeanFactory.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.general;
17
18 import org.springframework.beans.BeansException;
19 import org.springframework.beans.factory.access.BeanFactoryLocator;
20 import org.springframework.beans.factory.access.BeanFactoryReference;
21 import org.springframework.context.access.ContextSingletonBeanFactoryLocator;
22
23 /**
24  * Bean factory which uses Spring. 
25  */
26 public class SpringBeanFactory implements BeanFactory {
27     
28     private String _factoryName; 
29     
30     /**
31      * Constructs the bean factory. 
32      * @param aFactoryName Spring bean factory to use. 
33      */
34     public SpringBeanFactory(String aFactoryName) {
35         _factoryName = aFactoryName; 
36     }
37
38     /* (non-Javadoc)
39      * @see org.wamblee.general.BeanFactory#find(java.lang.String)
40      */
41     public Object find(String aId) {
42        return find(aId, Object.class);
43     }
44
45     /* (non-Javadoc)
46      * @see org.wamblee.general.BeanFactory#find(java.lang.Class)
47      */
48     public <T> T find(Class<T> aClass) {
49         return find(aClass.getName(), aClass);
50     }
51
52     /* (non-Javadoc)
53      * @see org.wamblee.general.BeanFactory#find(java.lang.String, java.lang.Class)
54      */
55     public <T> T find(String aId, Class<T> aClass) {
56         BeanFactoryLocator locator = ContextSingletonBeanFactoryLocator.getInstance(); 
57         BeanFactoryReference beanFactory = locator.useBeanFactory(_factoryName);
58        
59         try {
60             Object obj = beanFactory.getFactory().getBean(aId, aClass);
61             assert obj != null; 
62             return aClass.cast(obj); 
63         } catch (BeansException e) { 
64             throw new BeanFactoryException(e.getMessage(), e);
65         }
66     }
67
68 }