detectAutoSubmit(context, component, clientId);
Object result = null;
UploadedFile file = null;
UploadedFiles files = UploadedFiles.getUploadedFiles(context);
if (files != null)
{
file = files.getUploadedFile(clientId);
}
// If we couldn't find a file (or the file is empty), return "FALSE" to indicate that
// the file upload *was* available, but didn't upload a file
// this time.