Class FileSystemFileSetManager

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addFile​(String filePath)
      Add a file to the file set manager
      List<String> list()
      Return the list of all the files currently added to the manager
      void purge()
      Remove all the files from the manager (An implementation may also physically remove all the files)
      void removeFile​(String filePath)
      Remove a file from the manager (An implementation may also physically remove the file)
      • Methods inherited from class Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FileSystemFileSetManager

        public FileSystemFileSetManager()
    • Method Detail

      • addFile

        public void addFile​(String filePath)
        Description copied from interface: FileSetManager
        Add a file to the file set manager
        Specified by:
        addFile in interface FileSetManager
      • list

        public List<String> list()
        Description copied from interface: FileSetManager
        Return the list of all the files currently added to the manager
        Specified by:
        list in interface FileSetManager
      • removeFile

        public void removeFile​(String filePath)
        Description copied from interface: FileSetManager
        Remove a file from the manager (An implementation may also physically remove the file)
        Specified by:
        removeFile in interface FileSetManager
      • purge

        public void purge()
        Description copied from interface: FileSetManager
        Remove all the files from the manager (An implementation may also physically remove all the files)
        Specified by:
        purge in interface FileSetManager