File uploadedFile = fileList.values().iterator().next();
if (uploadedFile.getName().endsWith(FileUtils.SPR_EXTENSION) == false)
{
FileUtils f = new FileUtils();
String tempFilePath = uploadedFile.getAbsolutePath();
if (f.copyFile(tempFilePath, tempFilePath
+ FileUtils.SPR_EXTENSION) == false)
{
return new FormResponse(
HttpServletResponse.SC_INTERNAL_SERVER_ERROR,
"There was an error executing your request - the uploaded file copy failed",