Package org.pentaho.platform.api.util
Interface ITempFileDeleter
-
public interface ITempFileDeleter
-
-
Field Summary
Fields Modifier and Type Field Description static String
DELETER_SESSION_VARIABLE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
doTempFileCleanup()
Performs the temp file cleanup.boolean
hasTempFile(String aFileName)
Returns true if the specified file is being tracked by the deletervoid
trackTempFile(File aFile)
Adds the provided file to the list of files being tracked
-
-
-
Field Detail
-
DELETER_SESSION_VARIABLE
static final String DELETER_SESSION_VARIABLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
trackTempFile
void trackTempFile(File aFile)
Adds the provided file to the list of files being tracked- Parameters:
aFile
-
-
doTempFileCleanup
void doTempFileCleanup()
Performs the temp file cleanup.
-
hasTempFile
boolean 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
-
-