Package org.mule.jbi.management

Examples of org.mule.jbi.management.InstallationContextImpl.install()


    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
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.