Package com.volantis.synergetics.osgi.framework.boot

Examples of com.volantis.synergetics.osgi.framework.boot.ContextSwitchingProxyHandler


     */
    public static Object createContextSwitchingProxy(
            ClassLoader contextClassLoader, Class clazz, Object object) {

        InvocationHandler contextSwitchingHandler =
                new ContextSwitchingProxyHandler(
                        object, contextClassLoader);
        return Proxy.newProxyInstance(contextClassLoader,
                new Class[]{clazz}, contextSwitchingHandler);

    }
View Full Code Here


        // Wrap the manager in a context switching one that will ensure that
        // the context class loader is correctly set up on any call to the
        // manager.
        InvocationHandler contextSwitchingHandler =
                new ContextSwitchingProxyHandler(
                        equinox, osgiCCL);
        return (OSGiManager) Proxy.newProxyInstance(osgiCCL,
                new Class[]{OSGiManager.class}, contextSwitchingHandler);
    }
View Full Code Here

TOP

Related Classes of com.volantis.synergetics.osgi.framework.boot.ContextSwitchingProxyHandler

Copyright © 2018 www.massapicom. 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.