Package org.eclipse.osgi.internal.signedcontent

Examples of org.eclipse.osgi.internal.signedcontent.SignedStorageHook


  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]);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.osgi.internal.signedcontent.SignedStorageHook

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.