private void refreshBundle()

in src/main/java/org/apache/sling/tooling/support/install/impl/InstallServlet.java [170:175]


    private void refreshBundle(Bundle bundle) {
        FrameworkWiring frameworkWiring = bundleContext.getBundle(Constants.SYSTEM_BUNDLE_ID).adapt(FrameworkWiring.class);
        // take into account added/removed packages for updated bundles and newly satisfied optional package imports
        // for new installed bundles
        frameworkWiring.refreshBundles(Collections.singleton(bundle));
    }