Migration to maven almost complete. At least everything builds and works
[utils] / support / src / org / wamblee / general / SpringBeanFactory.java
diff --git a/support/src/org/wamblee/general/SpringBeanFactory.java b/support/src/org/wamblee/general/SpringBeanFactory.java
deleted file mode 100644 (file)
index 27a544b..0000000
+++ /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> T find(Class<T> aClass) {
-        return find(aClass.getName(), aClass);
-    }
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see org.wamblee.general.BeanFactory#find(java.lang.String,
-     *      java.lang.Class)
-     */
-    public <T> T find(String aId, Class<T> 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);
-        }
-    }
-
-}