Package org.apache.tuscany.sca.runtime

Examples of org.apache.tuscany.sca.runtime.ActiveNodes


    private Node getNode() {
        // TODO Several places in Tuscany need to do this type of thing, for example, processing
        // async responses, so we need to design a "proper" way to do it
       
        for (ExtensionPointRegistry xpr : ExtensionPointRegistryLocator.getExtensionPointRegistries()) {
            ActiveNodes activeNodes = xpr.getExtensionPoint(UtilityExtensionPoint.class).getUtility(ActiveNodes.class);
            for (Object o : activeNodes.getActiveNodes()) {
                Node node = (Node)o;
                if (node.getDomainName().equals(domainName)) {
                    return node;
                }
            }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.runtime.ActiveNodes

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.