File f = new File(URI.create(location));
ByteArrayOutputStream baos = new ByteArrayOutputStream();
Streams.drain(new FileInputStream(f), baos).get();
data = baos.toByteArray();
}
fw.installBundle(location, data);
break;
}
case UNINSTALL: {
Bundle b = admin.getBundle(location);
if (b == null) {