Package aQute.lib.deployer

Examples of aQute.lib.deployer.FileRepo


    return locations;
  }

  public synchronized File getCacheDirectory() {
    if (cacheDir == null) {
      FileRepo cacheRepo = lookupCachedFileRepo();
      if (cacheRepo != null) {
        File temp = new File(cacheRepo.getRoot(), ".obr");
        temp.mkdirs();
        if (temp.exists())
          cacheDir = temp;
      }
    }
View Full Code Here

TOP

Related Classes of aQute.lib.deployer.FileRepo

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.