Interface RenameHelper
-
public interface RenameHelperHelper for when a file is renamed. Helpers are always invoked after the rename occurs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostProcess(org.uberfire.backend.vfs.Path source, org.uberfire.backend.vfs.Path destination)Perform post processing following the rename operation.booleansupports(org.uberfire.backend.vfs.Path destination)This is invoked by parent code to provide the means for a Helper to signal whether it supports the given Path
-
-
-
Method Detail
-
supports
boolean supports(org.uberfire.backend.vfs.Path destination)
This is invoked by parent code to provide the means for a Helper to signal whether it supports the given Path- Parameters:
destination- Path- Returns:
-
postProcess
void postProcess(org.uberfire.backend.vfs.Path source, org.uberfire.backend.vfs.Path destination)Perform post processing following the rename operation. This is always within a IOService batch operation.- Parameters:
source- Path Source before copydestination- Path Destination after copy
-
-