Interface DeleteHelper


  • public interface DeleteHelper
    Helper 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
      void postProcess​(org.uberfire.backend.vfs.Path path)
      Performs post processing following the delete operation.
      boolean supports​(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.