Package org.servicemix.jbi.messaging

Examples of org.servicemix.jbi.messaging.DeliveryChannelImpl


            throws JBIException {
        ObjectName result = null;
        ComponentNameSpace cns = new ComponentNameSpace(getName(), activationSpec.getComponentName(), activationSpec.getId());
        log.info("Activating component for: " + cns + " with service: " + activationSpec.getService() + " component: "
                + component);
        DeliveryChannelImpl dc = new DeliveryChannelImpl(this, activationSpec.getComponentName());
        LocalComponentConnector lcc = registry.registerComponent(cns, description, component, dc, binding, service);
        if (lcc != null) {
            dc.setConnector(lcc);
            lcc.setPojo(pojo);
            ComponentEnvironment env = environmentContext.registerComponent(context.getEnvironment(),lcc);
            env.setInstallRoot(installationDir);
            context.activate(component, dc, env, activationSpec, installationDir);
            lcc.setContext(context);
View Full Code Here

TOP

Related Classes of org.servicemix.jbi.messaging.DeliveryChannelImpl

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.