Package com.caucho.vfs

Examples of com.caucho.vfs.GoogleMergePath


      String gsBucket = getIniString("google.cloud_storage_bucket");

      if (gsBucket != null) {
        Path stdPwd = getPwd();

        GoogleMergePath mergePwd = new GoogleMergePath(stdPwd,
            gsBucket, true);
        setPwd(mergePwd);

        Path webInfDir = getWebInfDir();
        Path gsWebInfDir = mergePwd.getGooglePath().lookup("WEB-INF");
        MergePath mergeWebInf = new MergePath(gsWebInfDir, webInfDir);

        setWebInfDir(mergeWebInf);
      }
    }
View Full Code Here

TOP

Related Classes of com.caucho.vfs.GoogleMergePath

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.