Package org.apache.struts2.action
Interface UploadedFilesAware
public interface UploadedFilesAware
Actions that want to be aware of all the uploaded file should implement this interface.
 The 
ActionFileUploadInterceptor will use the interface
 to notify action about the multiple uploaded files.- 
Method SummaryModifier and TypeMethodDescriptionvoidwithUploadedFiles(List<UploadedFile> uploadedFiles) Notifies action about the multiple uploaded files, when a single file is uploaded the list will have just one element
- 
Method Details- 
withUploadedFilesNotifies action about the multiple uploaded files, when a single file is uploaded the list will have just one element- Parameters:
- uploadedFiles- a list of- UploadedFile, cannot be null. It can be empty.
 
 
-