Package org.apache.aries.application.modelling.impl

Examples of org.apache.aries.application.modelling.impl.ImportedServiceImpl


    att.put(new Attributes.Name(Constants.BUNDLE_VERSION), bundleVersion);
    att.put(new Attributes.Name(Constants.BUNDLE_MANIFESTVERSION), "2");
   
    List<ImportedService> importedServices = new ArrayList<ImportedService>();
    for (String s : importService) {
      importedServices.add(new ImportedServiceImpl(false, s, null, null, null, false));
    }
   
    List<ExportedService> exportedServices = new ArrayList<ExportedService>();
    for (String s : exportService) {
      exportedServices.add(new ExportedServiceImpl(null, 0, Collections.singleton(s), Collections.<String,Object>emptyMap()));
View Full Code Here

TOP

Related Classes of org.apache.aries.application.modelling.impl.ImportedServiceImpl

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.