Class FileCleanerCleanup
- java.lang.Object
-
- org.apache.commons.fileupload.servlet.FileCleanerCleanup
-
- All Implemented Interfaces:
java.util.EventListener
,javax.servlet.ServletContextListener
public class FileCleanerCleanup 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.String
FILE_CLEANING_TRACKER_ATTRIBUTE
Attribute name, which is used for storing an instance ofFileCleaningTracker
in the web application.
-
Constructor Summary
Constructors Constructor Description FileCleanerCleanup()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
contextDestroyed(javax.servlet.ServletContextEvent sce)
Called when the web application is being destroyed.void
contextInitialized(javax.servlet.ServletContextEvent sce)
Called when the web application is initialized.static FileCleaningTracker
getFileCleaningTracker(javax.servlet.ServletContext pServletContext)
Returns the instance ofFileCleaningTracker
, which is associated with the givenServletContext
.static void
setFileCleaningTracker(javax.servlet.ServletContext pServletContext, FileCleaningTracker pTracker)
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 ofFileCleaningTracker
in the web application.
-
-
Method Detail
-
getFileCleaningTracker
public static FileCleaningTracker getFileCleaningTracker(javax.servlet.ServletContext pServletContext)
Returns the instance ofFileCleaningTracker
, which is associated with the givenServletContext
.- Parameters:
pServletContext
- The servlet context to query- Returns:
- The contexts tracker
-
setFileCleaningTracker
public static void setFileCleaningTracker(javax.servlet.ServletContext pServletContext, FileCleaningTracker pTracker)
Sets the instance ofFileCleaningTracker
, which is associated with the givenServletContext
.- Parameters:
pServletContext
- The servlet context to modifypTracker
- The tracker to set
-
contextInitialized
public void contextInitialized(javax.servlet.ServletContextEvent sce)
Called when the web application is initialized. Does nothing.- Specified by:
contextInitialized
in interfacejavax.servlet.ServletContextListener
- Parameters:
sce
- The servlet context, used for callingsetFileCleaningTracker(ServletContext, FileCleaningTracker)
.
-
contextDestroyed
public void contextDestroyed(javax.servlet.ServletContextEvent sce)
Called when the web application is being destroyed. CallsFileCleaningTracker.exitWhenFinished()
.- Specified by:
contextDestroyed
in interfacejavax.servlet.ServletContextListener
- Parameters:
sce
- The servlet context, used for callinggetFileCleaningTracker(ServletContext)
.
-
-