X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fsrc%2Forg%2Fwamblee%2Fgeneral%2FSpringBeanFactory.java;fp=support%2Fsrc%2Forg%2Fwamblee%2Fgeneral%2FSpringBeanFactory.java;h=0000000000000000000000000000000000000000;hb=62f165891f08ae532b5a794af11d7338a93f9a43;hp=27a544b1d81da635928e7c47eb3bd02b9aac04e3;hpb=07cedd3f0730646ea35a7f668b3e1e872a4605d9;p=utils diff --git a/support/src/org/wamblee/general/SpringBeanFactory.java b/support/src/org/wamblee/general/SpringBeanFactory.java deleted file mode 100644 index 27a544b1..00000000 --- a/support/src/org/wamblee/general/SpringBeanFactory.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright 2005 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.wamblee.general; - -import org.springframework.beans.BeansException; -import org.springframework.beans.factory.access.BeanFactoryLocator; -import org.springframework.beans.factory.access.BeanFactoryReference; -import org.springframework.context.access.ContextSingletonBeanFactoryLocator; - -/** - * Bean factory which uses Spring. This bean factory cannot be configured - * directly in the {@link org.wamblee.general.BeanKernel} because it does not - * provide a default no-arg constructor. Therefore, it must be delegated to or - * it must tbe subclassed to provide a default constructor. - */ -public class SpringBeanFactory implements BeanFactory { - - private BeanFactoryReference _factoryReference; - - /** - * Constructs the bean factory. - * - * @param aSelector - * Selector to find the appropriate bean ref context. - * @param aFactoryName - * Spring bean factory to use. - */ - public SpringBeanFactory(String aSelector, String aFactoryName) { - try { - BeanFactoryLocator locator = ContextSingletonBeanFactoryLocator - .getInstance(aSelector); - _factoryReference = locator.useBeanFactory(aFactoryName); - } catch (BeansException e) { - throw new BeanFactoryException( - "Could not load bean factory: selector = '" + aSelector - + "', factory = '" + aFactoryName + "'", e); - } - } - - /* - * (non-Javadoc) - * - * @see org.wamblee.general.BeanFactory#find(java.lang.String) - */ - public Object find(String aId) { - return find(aId, Object.class); - } - - /* - * (non-Javadoc) - * - * @see org.wamblee.general.BeanFactory#find(java.lang.Class) - */ - public T find(Class aClass) { - return find(aClass.getName(), aClass); - } - - /* - * (non-Javadoc) - * - * @see org.wamblee.general.BeanFactory#find(java.lang.String, - * java.lang.Class) - */ - public T find(String aId, Class aClass) { - try { - Object obj = _factoryReference.getFactory().getBean(aId, aClass); - assert obj != null; - return aClass.cast(obj); - } catch (BeansException e) { - throw new BeanFactoryException(e.getMessage(), e); - } - } - -}