public class FileCleanerCleanup extends Object implements javax.servlet.ServletContextListener
FileCleaningTracker's reaper thread is terminated,
when the web application is destroyed.| Modifier and Type | Field and Description |
|---|---|
static String |
FILE_CLEANING_TRACKER_ATTRIBUTE
Attribute name, which is used for storing an instance of
FileCleaningTracker in the web application. |
| Constructor and Description |
|---|
FileCleanerCleanup()
Constructs a new instance.
|
| Modifier and Type | Method and 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 org.apache.commons.io.FileCleaningTracker |
getFileCleaningTracker(javax.servlet.ServletContext servletContext)
Returns the instance of
FileCleaningTracker, which is
associated with the given ServletContext. |
static void |
setFileCleaningTracker(javax.servlet.ServletContext servletContext,
org.apache.commons.io.FileCleaningTracker tracker)
Sets the instance of
FileCleaningTracker, which is
associated with the given ServletContext. |
public static final String FILE_CLEANING_TRACKER_ATTRIBUTE
FileCleaningTracker in the web application.public static org.apache.commons.io.FileCleaningTracker getFileCleaningTracker(javax.servlet.ServletContext servletContext)
FileCleaningTracker, which is
associated with the given ServletContext.servletContext - The servlet context to querypublic static void setFileCleaningTracker(javax.servlet.ServletContext servletContext,
org.apache.commons.io.FileCleaningTracker tracker)
FileCleaningTracker, which is
associated with the given ServletContext.servletContext - The servlet context to modifytracker - The tracker to setpublic void contextDestroyed(javax.servlet.ServletContextEvent sce)
FileCleaningTracker.exitWhenFinished().contextDestroyed in interface javax.servlet.ServletContextListenersce - The servlet context, used for calling
getFileCleaningTracker(ServletContext).public void contextInitialized(javax.servlet.ServletContextEvent sce)
contextInitialized in interface javax.servlet.ServletContextListenersce - The servlet context, used for calling
setFileCleaningTracker(ServletContext, FileCleaningTracker).Copyright © 2002–2025 The Apache Software Foundation. All rights reserved.