private Bundle installOrUpdateBundle()

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


    private Bundle installOrUpdateBundle(Bundle bundle, final InputStream in, String location, boolean refreshPackages) throws BundleException {
        if (bundle != null) {
            // update
            bundle.update(in);
        } else {
            // install
            bundle = bundleContext.installBundle(location, in);
            bundle.start();
        }
        if (refreshPackages) {
            refreshBundle(bundle);
        }
        return bundle;
    }