Interface DeleteHelper
-
public interface DeleteHelperHelper for when a file is deleted. Helpers are always invoked before the deletion occurs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostProcess(org.uberfire.backend.vfs.Path path)Performs post processing following the delete operation.booleansupports(org.uberfire.backend.vfs.Path path)Helpers signal whether it supports the given Path
-
-
-
Method Detail
-
supports
boolean supports(org.uberfire.backend.vfs.Path path)
Helpers signal whether it supports the given Path- Parameters:
path- The Path that was deleted.- Returns:
-
postProcess
void postProcess(org.uberfire.backend.vfs.Path path)
Performs post processing following the delete operation. This is always within a IOService batch operation.- Parameters:
path- The Path that was deleted.
-
-