The extensionmanager creates a classcastexception if more then framework is around and both have extensions installed. This fixes the issue.
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@633836 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/ExtensionManager.java b/framework/src/main/java/org/apache/felix/framework/ExtensionManager.java
index fc8e96d..8f789da 100644
--- a/framework/src/main/java/org/apache/felix/framework/ExtensionManager.java
+++ b/framework/src/main/java/org/apache/felix/framework/ExtensionManager.java
@@ -227,7 +227,7 @@
new AdminPermission(bundle, AdminPermission.EXTENSIONLIFECYCLE));
}
- if (!bundle.getInfo().getProtectionDomain().implies(new AllPermission()))
+ if (!((BundleProtectionDomain) bundle.getInfo().getProtectionDomain()).impliesDirect(new AllPermission()))
{
throw new SecurityException("Extension Bundles must have AllPermission");
}
@@ -577,8 +577,12 @@
for (Iterator iter = m_sourceToExtensions.values().iterator(); iter.hasNext();)
{
- Bundle bundle = (Bundle) iter.next();
- _add(bundle.getSymbolicName(), bundle);
+ List extensions = (List) iter.next();
+ for (Iterator extIter = extensions.iterator(); extIter.hasNext();)
+ {
+ Bundle bundle = (Bundle) extIter.next();
+ _add(bundle.getSymbolicName(), bundle);
+ }
}
}