commit | e51f2145e384306691e3f5197e6e60c455d8c624 | [log] [tgz] |
---|---|---|
author | Richard S. Hall <rickhall@apache.org> | Thu Feb 16 11:38:06 2006 +0000 |
committer | Richard S. Hall <rickhall@apache.org> | Thu Feb 16 11:38:06 2006 +0000 |
tree | 74c1e68a07b008662c5e2f74283b140381f9bb62 | |
parent | 939c9c5b340181ba09560c2a96da0b2f816aa292 [diff] |
Added symbolic name to system bundle headers. git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@378229 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/org.apache.felix.framework/src/main/java/org/apache/felix/framework/SystemBundle.java b/org.apache.felix.framework/src/main/java/org/apache/felix/framework/SystemBundle.java index 2028751..aefdce5 100644 --- a/org.apache.felix.framework/src/main/java/org/apache/felix/framework/SystemBundle.java +++ b/org.apache.felix.framework/src/main/java/org/apache/felix/framework/SystemBundle.java
@@ -126,6 +126,7 @@ // Initialize header map as a case insensitive map. Map map = new StringMap(false); map.put(FelixConstants.BUNDLE_VERSION, FelixConstants.FELIX_VERSION_VALUE); + map.put(FelixConstants.BUNDLE_SYMBOLICNAME, FelixConstants.SYSTEM_BUNDLE_SYMBOLICNAME); map.put(FelixConstants.BUNDLE_NAME, "System Bundle"); map.put(FelixConstants.BUNDLE_DESCRIPTION, "This bundle is system specific; it implements various system services.");