274275276277278279280281282283284
try { Library lib = context.getRegistry().getLibrary(aSharedLibName); if (lib == null) { throw new JBIException("Library does not exists"); } lib.uninstall(); return true; } catch (Exception e) { LOGGER.error("Error uninstalling library", e); return false; }