Package org.apache.aries.subsystem.core.archive

Examples of org.apache.aries.subsystem.core.archive.SubsystemExportServiceHeader


    capabilities.addAll(resource.getCapabilities(null));
    computeOsgiServiceCapabilities(capabilities);
  }
 
  private void computeOsgiServiceCapabilities(List<Capability> capabilities) throws InvalidSyntaxException {
    SubsystemExportServiceHeader header = getSubsystemManifest().getSubsystemExportServiceHeader();
    if (header == null)
      return;
    for (Resource resource : getContentResources())
      capabilities.addAll(header.toCapabilities(resource));
  }
View Full Code Here

TOP

Related Classes of org.apache.aries.subsystem.core.archive.SubsystemExportServiceHeader

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.