manifest.addConfiguredAttribute(bundleClassPath);
}
//import packages, dynamic import packages and required bundles are from the configuration bundle.
String importPackages = (String)bundleContext.getBundle().getHeaders().get(Constants.IMPORT_PACKAGE);
if (importPackages != null) {
manifest.addConfiguredAttribute(new Manifest.Attribute(Manifest.Attribute.Separator.COMMA, Constants.IMPORT_PACKAGE, importPackages));
}
String dynamicImportPackages = (String)bundleContext.getBundle().getHeaders().get(Constants.DYNAMICIMPORT_PACKAGE);
if (dynamicImportPackages != null) {
List<HeaderElement> headerElements = HeaderParser.parseHeader(dynamicImportPackages);
//From shared library perspective, dynamic * should not be used