1 16 package org.apache.commons.vfs.tasks; 17 18 import org.apache.commons.vfs.FileObject; 19 20 26 public class SyncTask 27 extends CopyTask 28 { 29 32 protected void handleMissingSourceFile(final FileObject destFile) 33 throws Exception  34 { 35 log("deleting " + destFile); 36 } 38 39 43 protected boolean detectMissingSourceFiles() 44 { 45 return true; 46 } 47 } 48 | Popular Tags |