Package org.picocontainer.gems

Source Code of org.picocontainer.gems.HotSwappingComponentAdapterFactory

/*****************************************************************************
* Copyright (c) PicoContainer Organization. All rights reserved.            *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD      *
* style license a copy of which has been included with this distribution in *
* the LICENSE.txt file.                                                     *
*                                                                           *
* Idea by Rachel Davies, Original code by Aslak Hellesoy and Paul Hammant   *
*****************************************************************************/

package org.picocontainer.gems;

import com.thoughtworks.proxy.ProxyFactory;
import com.thoughtworks.proxy.factory.StandardProxyFactory;
import org.picocontainer.ComponentAdapter;
import org.picocontainer.Parameter;
import org.picocontainer.PicoIntrospectionException;
import org.picocontainer.defaults.AssignabilityRegistrationException;
import org.picocontainer.defaults.ComponentAdapterFactory;
import org.picocontainer.defaults.DecoratingComponentAdapterFactory;
import org.picocontainer.defaults.DefaultComponentAdapterFactory;
import org.picocontainer.defaults.NotConcreteRegistrationException;

/**
* Hides implementation.
*
* @author Paul Hammant
* @author Aslak Hellesøy
* @version $Revision: 2002 $
* @see HotSwappingComponentAdapter
*/
public class HotSwappingComponentAdapterFactory extends DecoratingComponentAdapterFactory {
    private final ProxyFactory proxyFactory;

    public HotSwappingComponentAdapterFactory() {
        this(new DefaultComponentAdapterFactory());
    }

    public HotSwappingComponentAdapterFactory(ComponentAdapterFactory delegate) {
        this(delegate, new StandardProxyFactory());
    }

    public HotSwappingComponentAdapterFactory(ComponentAdapterFactory delegate, ProxyFactory proxyFactory) {
        super(delegate);
        this.proxyFactory = proxyFactory;
    }

    public ComponentAdapter createComponentAdapter(Object componentKey,
                                                   Class componentImplementation,
                                                   Parameter[] parameters)
            throws PicoIntrospectionException, AssignabilityRegistrationException, NotConcreteRegistrationException {
        ComponentAdapter componentAdapter = super.createComponentAdapter(componentKey, componentImplementation, parameters);
        return new HotSwappingComponentAdapter(componentAdapter, proxyFactory);
    }
}
TOP

Related Classes of org.picocontainer.gems.HotSwappingComponentAdapterFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.