Package org.pentaho.platform.api.util
Interface ITempFileDeleter
- 
 public interface ITempFileDeleter
- 
- 
Field SummaryFields Modifier and Type Field Description static StringDELETER_SESSION_VARIABLE
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoTempFileCleanup()Performs the temp file cleanup.booleanhasTempFile(String aFileName)Returns true if the specified file is being tracked by the deletervoidtrackTempFile(File aFile)Adds the provided file to the list of files being tracked
 
- 
- 
- 
Field Detail- 
DELETER_SESSION_VARIABLEstatic final String DELETER_SESSION_VARIABLE - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
trackTempFilevoid trackTempFile(File aFile) Adds the provided file to the list of files being tracked- Parameters:
- aFile-
 
 - 
doTempFileCleanupvoid doTempFileCleanup() Performs the temp file cleanup.
 - 
hasTempFileboolean hasTempFile(String aFileName) Returns true if the specified file is being tracked by the deleter- Parameters:
- aFileName-
- Returns:
- true if the deleter has the filename in it's list
 
 
- 
 
-