Package org.osgi.impl.bundle.obr.resource.ResourceImpl

Examples of org.osgi.impl.bundle.obr.resource.ResourceImpl.UrlTransformer


   */
  public static UrlTransformer getUrlChomper(final URL rootUrl, final String metadataPath) {
    final String rootUrlPattern = '^' + Pattern.quote(rootUrl.toExternalForm()) + "/*";
    final String pathFromMetadataToRoot = getPathToRoot(metadataPath);

    return new UrlTransformer()
    {
      public String transform(final URL url) {
        return url.toExternalForm().replaceFirst(rootUrlPattern, pathFromMetadataToRoot);
      }
    };
View Full Code Here

TOP

Related Classes of org.osgi.impl.bundle.obr.resource.ResourceImpl.UrlTransformer

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.