Package org.servicemix.jbi.servicedesc

Examples of org.servicemix.jbi.servicedesc.DynamicEndpoint


        Collection connectors = componentRegistry.getLocalComponentConnectors();
        for (Iterator iter = connectors.iterator(); iter.hasNext();) {
            LocalComponentConnector connector = (LocalComponentConnector) iter.next();
            ServiceEndpoint se = connector.getComponent().resolveEndpointReference(epr);
            if (se != null) {
                return new DynamicEndpoint(connector.getComponentNameSpace(), se, epr)
            }
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.servicemix.jbi.servicedesc.DynamicEndpoint

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.