Package com.sun.enterprise.naming.util

Examples of com.sun.enterprise.naming.util.OSGiObjectInputOutputStreamFactoryImpl$OSGiObjectOutputStream


public class NamingActivator implements BundleActivator
{
    public void start(BundleContext context) throws Exception
    {
        ObjectInputOutputStreamFactoryFactory.setFactory(
                new OSGiObjectInputOutputStreamFactoryImpl(context));

        // force initialisation of NamingBuilder so that any naming operation will be redirected via
        // our builder which is essential for issue #8458
        Globals.getDefaultHabitat().getService(GlassFishNamingBuilder.class);
    }
View Full Code Here


public class NamingActivator implements BundleActivator
{
    public void start(BundleContext context) throws Exception
    {
        ObjectInputOutputStreamFactoryFactory.setFactory(
                new OSGiObjectInputOutputStreamFactoryImpl(context));

        // force initialisation of NamingBuilder so that any naming operation will be redirected via
        // our builder which is essential for issue #8458
        Habitat habitat = Globals.getDefaultHabitat();
        habitat.getComponent(GlassFishNamingBuilder.class);
View Full Code Here

TOP

Related Classes of com.sun.enterprise.naming.util.OSGiObjectInputOutputStreamFactoryImpl$OSGiObjectOutputStream

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.