blob: 18f83b0bb3e20b61f9cae27ae4ee774335f1e975 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.framework.internal.protocol.bundleentry;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URL;
import org.eclipse.osgi.framework.adaptor.core.AbstractBundleData;
import org.eclipse.osgi.framework.adaptor.core.BundleEntry;
import org.eclipse.osgi.framework.adaptor.core.BundleResourceHandler;
import org.eclipse.osgi.framework.internal.core.AbstractBundle;
/**
* URLStreamHandler the bundleentry protocol.
*/
public class Handler extends BundleResourceHandler
{
/**
* Constructor for a bundle protocol resource URLStreamHandler.
*/
public Handler()
{
super();
}
public Handler(BundleEntry bundleEntry) {
super(bundleEntry);
}
protected BundleEntry findBundleEntry(URL url, AbstractBundle bundle) throws IOException
{
AbstractBundleData bundleData = (AbstractBundleData) bundle.getBundleData();
BundleEntry entry = bundleData.getBaseBundleFile().getEntry(url.getPath());
if (entry == null)
throw new FileNotFoundException(url.getPath());
return entry;
}
}