return Collections.emptyList();
}
private void putFile(File src, Path temp, Path dst) throws IOException {
if (hadoopFileSystem.exists(dst))
throw new FileOverwriteException();
hadoopFileSystem.delete(temp, true);
hadoopFileSystem.copyFromLocalFile(new Path(src.getAbsoluteFile().toURI()),
temp);
}