Searched defs:symbolicName (Results 1 - 1 of 1) sorted by relevance

/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DBundleHandler.java65 * @param symbolicName is the key used to look up installed bundles
68 public void upgradeBundle(Path newBundle, String symbolicName) throws UpdateException { argument
70 List<Bundle> installedBundles = getBundles(symbolicName);
96 * Modifies a current installed bundle that has the same symbolicName as the
144 * symbolicName from the felix framework. It is possible
148 * @param symbolicName is used as a key to retrieve that bundle
149 * @return @{Bundle} associated with that symbolicName
151 private List<Bundle> getBundles(final String symbolicName) { argument
154 if (symbolicName.equalsIgnoreCase(b.getSymbolicName())) {
155 logger.debug("Found bundle {} version : {}", symbolicName,
[all...]

Completed in 80 milliseconds