Package org.apache.aries.jmx.codec

Examples of org.apache.aries.jmx.codec.BundleWiringData


        List<BundleCapability> capabilities = wiring.getCapabilities(namespace);
        List<BundleRequirement> requirements = wiring.getRequirements(namespace);
        List<BundleWire> providedWires = wiring.getProvidedWires(namespace);
        List<BundleWire> requiredWires = wiring.getRequiredWires(namespace);

        BundleWiringData data = new BundleWiringData(wiring.getBundle().getBundleId(), revisionID, capabilities, requirements, providedWires, requiredWires, revisionIDMap);
        return data.toCompositeData();
    }
View Full Code Here

TOP

Related Classes of org.apache.aries.jmx.codec.BundleWiringData

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.