(no commit message)
[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     public SpringBeanFactory(String aFactoryName) {
31         _factoryName = aFactoryName; 
32     }
33
34     /* (non-Javadoc)
35      * @see org.wamblee.general.BeanFactory#find(java.lang.String)
36      */
37     public Object find(String aId) {
38        return find(aId, Object.class);
39     }
40
41     /* (non-Javadoc)
42      * @see org.wamblee.general.BeanFactory#find(java.lang.Class)
43      */
44     public <T> T find(Class<T> aClass) {
45         return find(aClass.getName(), aClass);
46     }
47
48     /* (non-Javadoc)
49      * @see org.wamblee.general.BeanFactory#find(java.lang.String, java.lang.Class)
50      */
51     public <T> T find(String aId, Class<T> aClass) {
52         BeanFactoryLocator locator = ContextSingletonBeanFactoryLocator.getInstance(); 
53         BeanFactoryReference beanFactory = locator.useBeanFactory(_factoryName);
54        
55         try {
56             Object obj = beanFactory.getFactory().getBean(aId, aClass);
57             assert obj != null; 
58             return aClass.cast(obj); 
59         } catch (BeansException e) { 
60             throw new BeanFactoryException(e.getMessage(), e);
61         }
62     }
63
64 }