Package org.apache.clerezza.utils.osgi

Examples of org.apache.clerezza.utils.osgi.BundlePathNode


    }
    updateFileServer();
  }

  private void registerStaticFiles(Bundle bundle) {
    PathNode pathNode = new BundlePathNode(bundle, "META-INF/static-web");
    bundleNodeMap.put(bundle, pathNode);
  }
View Full Code Here


   */
  public void configure(BundleContext context, String path) {
    PathNode pathNode;
    Bundle bundle = context.getBundle();
    URL resourceDir = getClass().getResource(path);
    pathNode = new BundlePathNode(bundle, resourceDir.getPath());
    configure(pathNode);
  }
View Full Code Here

TOP

Related Classes of org.apache.clerezza.utils.osgi.BundlePathNode

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.