Package org.platformlayer.ops.cas.filesystem

Examples of org.platformlayer.ops.cas.filesystem.FilesystemCasObject


    }

    if (stagingStore != null) {
      log.info("Staging object " + this + " to " + stagingStore);

      FilesystemCasObject staged = ((FilesystemCasStore) stagingStore).copyToStaging(this);

      staged.copyTo(destTarget, destPath, null);
    } else {
      log.info("Copying object from " + this + " to " + destTarget);

      this.copyTo0(OpsCasTarget.getTarget(destTarget), destPath);
    }
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.cas.filesystem.FilesystemCasObject

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.