Copies customer input
if(inputFile != null) {
try {
String destFile = intermediateReportLocation +
Defaults.CUSTOMER_INPUT;
FileUtils.copyFile(inputFile, destFile);
return new FileData(destFile,
DataType.CUSTOMER_INFO);
} catch (IOException ioe) {
logger.log(Level.WARNING, "diagnostic-service.copy_failed",
new Object[]{inputFile, ioe.getMessage()});
}
}
return null;