/* * (non-Javadoc) * * @see com.yipsilon.osgi.IBundleContext#installBundle(java.lang.String) */ public IBundle installBundle(String location) throws BundleException { return framework.installBundle(location); }
public Bundle installBundle(String location, InputStream in) throws BundleException { checkValid(); // note AdminPermission is checked after bundle is loaded return framework.installBundle(location, in, this); }