// precondition: session is existent
networkManager.getSession();
SequentialProcess process = new SequentialProcess();
DownloadFileContext context = new DownloadFileContext(fileKey, destination, versionToDownload);
process.add(new FindInUserProfileStep(context, networkManager));
return process;
}