public Bundle installBundle(String location) throws BundleException
{
try
{
LocationMapper mapper = (LocationMapper) getFramework().getProperty(LocationMapper.LOCATION_MANAGER);
return installBundle(location, mapper.mapLocationString(location));
}
catch (PapooseException e)
{
throw new BundleException("Unable to open a stream for location: " + location, e);
}