Uses of Interface
org.apache.wicket.util.file.IFileCleaner

Packages that use IFileCleaner
org.apache.wicket.settings   
org.apache.wicket.settings.def   
org.apache.wicket.util.file File utilities. 
org.apache.wicket.util.upload Protocol independent upload utilities. 
 

Uses of IFileCleaner in org.apache.wicket.settings
 

Methods in org.apache.wicket.settings that return IFileCleaner
 IFileCleaner IResourceSettings.getFileCleaner()
           
 

Methods in org.apache.wicket.settings with parameters of type IFileCleaner
 void IResourceSettings.setFileCleaner(IFileCleaner fileCleaner)
          Sets a cleaner that can be used to remove files asynchronously.
 

Uses of IFileCleaner in org.apache.wicket.settings.def
 

Methods in org.apache.wicket.settings.def that return IFileCleaner
 IFileCleaner ResourceSettings.getFileCleaner()
           
 

Methods in org.apache.wicket.settings.def with parameters of type IFileCleaner
 void ResourceSettings.setFileCleaner(IFileCleaner fileUploadCleaner)
           
 

Uses of IFileCleaner in org.apache.wicket.util.file
 

Classes in org.apache.wicket.util.file that implement IFileCleaner
 class FileCleaner
          Default implementation of IFileCleaner that uses Apache commons-io FileCleaningTracker to track and clean the temporary created files.
 

Methods in org.apache.wicket.util.file with parameters of type IFileCleaner
static boolean Files.removeAsync(java.io.File file, IFileCleaner fileCleaner)
          Schedules a file for removal asynchronously.
static boolean Files.removeFolderAsync(java.io.File folder, IFileCleaner fileCleaner)
          Schedules a folder and all files inside it for asynchronous removal.
 

Uses of IFileCleaner in org.apache.wicket.util.upload
 

Constructors in org.apache.wicket.util.upload with parameters of type IFileCleaner
DiskFileItem(java.lang.String fieldName, java.lang.String contentType, boolean isFormField, java.lang.String fileName, int sizeThreshold, java.io.File repository, IFileCleaner fileUploadCleaner)
          Constructs a new DiskFileItem instance.
DiskFileItemFactory(IFileCleaner fileUploadCleaner)
          Constructs an unconfigured instance of this class.
DiskFileItemFactory(int sizeThreshold, java.io.File repository, IFileCleaner fileUploadCleaner)
          Constructs a preconfigured instance of this class.
 



Copyright © 2006-2011 Apache Software Foundation. All Rights Reserved.