protected URLConnection openConnection()

in src/main/java/org/apache/sling/bundleresource/impl/BundleResourceURLStreamHandler.java [42:48]


    protected URLConnection openConnection(URL u) throws IOException {
        if (!PROTOCOL.equals(u.getProtocol())) {
            throw new IOException("Cannot open connection to " + u + ", wrong protocol");
        }

        return new BundleResourceURLConnection(bundle, bundlePath, u);
    }