Interface FileSetManager

All Known Implementing Classes:
AncillaryFileManager, FileSystemFileSetManager, GeoSpatialImageReader, NetCDFAccess, NetCDFImageReader

public interface FileSetManager
Author:
Daniele Romagnoli, GeoSolutions SaS
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addFile(String filePath)
    Add a file to the file set manager
    Return the list of all the files currently added to the manager
    void
    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)
  • Method Details

    • addFile

      void addFile(String filePath)
      Add a file to the file set manager
    • list

      List<String> list()
      Return the list of all the files currently added to the manager
    • removeFile

      void removeFile(String filePath)
      Remove a file from the manager (An implementation may also physically remove the file)
    • purge

      void purge()
      Remove all the files from the manager (An implementation may also physically remove all the files)