Class JavaxFileCleaner
- java.lang.Object
-
- org.apache.commons.fileupload2.javax.JavaxFileCleaner
-
- All Implemented Interfaces:
java.util.EventListener,javax.servlet.ServletContextListener
public class JavaxFileCleaner extends java.lang.Object implements javax.servlet.ServletContextListener
A servlet context listener, which ensures that theFileCleaningTracker's reaper thread is terminated, when the web application is destroyed.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFILE_CLEANING_TRACKER_ATTRIBUTEAttribute name, which is used for storing an instance ofFileCleaningTrackerin the web application.
-
Constructor Summary
Constructors Constructor Description JavaxFileCleaner()Constructs a new instance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontextDestroyed(javax.servlet.ServletContextEvent sce)Called when the web application is being destroyed.voidcontextInitialized(javax.servlet.ServletContextEvent sce)Called when the web application is initialized.static org.apache.commons.io.FileCleaningTrackergetFileCleaningTracker(javax.servlet.ServletContext servletContext)Gets the instance ofFileCleaningTracker, which is associated with the givenServletContext.static voidsetFileCleaningTracker(javax.servlet.ServletContext servletContext, org.apache.commons.io.FileCleaningTracker tracker)Sets the instance ofFileCleaningTracker, which is associated with the givenServletContext.
-
-
-
Field Detail
-
FILE_CLEANING_TRACKER_ATTRIBUTE
public static final java.lang.String FILE_CLEANING_TRACKER_ATTRIBUTE
Attribute name, which is used for storing an instance ofFileCleaningTrackerin the web application.
-
-
Constructor Detail
-
JavaxFileCleaner
public JavaxFileCleaner()
Constructs a new instance.
-
-
Method Detail
-
getFileCleaningTracker
public static org.apache.commons.io.FileCleaningTracker getFileCleaningTracker(javax.servlet.ServletContext servletContext)
Gets the instance ofFileCleaningTracker, which is associated with the givenServletContext.- Parameters:
servletContext- The servlet context to query- Returns:
- The contexts tracker
-
setFileCleaningTracker
public static void setFileCleaningTracker(javax.servlet.ServletContext servletContext, org.apache.commons.io.FileCleaningTracker tracker)
Sets the instance ofFileCleaningTracker, which is associated with the givenServletContext.- Parameters:
servletContext- The servlet context to modifytracker- The tracker to set
-
contextDestroyed
public void contextDestroyed(javax.servlet.ServletContextEvent sce)
Called when the web application is being destroyed. CallsFileCleaningTracker.exitWhenFinished().- Specified by:
contextDestroyedin interfacejavax.servlet.ServletContextListener- Parameters:
sce- The servlet context, used for callinggetFileCleaningTracker(ServletContext).
-
contextInitialized
public void contextInitialized(javax.servlet.ServletContextEvent sce)
Called when the web application is initialized. Does nothing.- Specified by:
contextInitializedin interfacejavax.servlet.ServletContextListener- Parameters:
sce- The servlet context, used for callingsetFileCleaningTracker(ServletContext, FileCleaningTracker).
-
-