use of org.apache.aries.application.modelling.impl.ExportedPackageImpl in project aries by apache.
the class ExportedPackageTest method instantiatePackage.
private ExportedPackage instantiatePackage(String packageName, String version, String... attributes) {
ModelledResource mr = Skeleton.newMock(ModelledResource.class);
Map<String, Object> generatedAttributes = new HashMap<String, Object>();
generatedAttributes.put(Constants.VERSION_ATTRIBUTE, version);
for (String att : attributes) {
String[] bits = att.split("=");
generatedAttributes.put(bits[0], bits[1]);
}
return new ExportedPackageImpl(mr, packageName, generatedAttributes);
}
Aggregations