Package org.mule.jbi.management

Examples of org.mule.jbi.management.InstallationContextImpl


    }

    protected void bootstrapComponent(RegistryComponent component, Object bootstrap) throws Exception {
        if(bootstrap instanceof Bootstrap) {
            Bootstrap bs = (Bootstrap)bootstrap;
            InstallationContextImpl ctx = new InstallationContextImpl(component, bs);
            bs.init(ctx);
            ctx.install();
        } else {
            throw new IllegalArgumentException("For JBI registry Boostrap class must be of type: " + Bootstrap.class.getName());
        }

    }
View Full Code Here

TOP

Related Classes of org.mule.jbi.management.InstallationContextImpl

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.