public void processInstalledBundles() {
Bundle[] bundles = bundleContext.getBundles();
for (int i = 0; i < bundles.length; i++) {
BaseData baseData = (BaseData) ((AbstractBundle) bundles[i]).getBundleData();
SignedStorageHook hook = (SignedStorageHook) baseData.getStorageHook(SignedStorageHook.KEY);
SignedContent signedContent = hook != null ? hook.getSignedContent() : null;
authorize(signedContent, bundles[i]);
}
}