Class FileContentWriter

    • Constructor Detail

      • FileContentWriter

        public FileContentWriter​(File file)
        Constructor that builds a URL based on the absolute path of the file.
        Parameters:
        file - the file for writing. This will most likely be directly related to the content URL.
      • FileContentWriter

        public FileContentWriter​(File file,
                                 ContentReader existingContentReader)
        Constructor that builds a URL based on the absolute path of the file.
        Parameters:
        file - the file for writing. This will most likely be directly related to the content URL.
        existingContentReader - a reader of a previous version of this content
      • FileContentWriter

        public FileContentWriter​(File file,
                                 String url,
                                 ContentReader existingContentReader)
        Constructor that explicitely sets the URL that the reader represents.
        Parameters:
        file - the file for writing. This will most likely be directly related to the content URL.
        url - the relative url that the reader represents
        existingContentReader - a reader of a previous version of this content
    • Method Detail

      • getFile

        public File getFile()
        Returns:
        Returns the file that this writer accesses
      • getSize

        public long getSize()
        Returns:
        Returns the size of the underlying file or
      • createReader

        protected ContentReader createReader()
                                      throws ContentIOException
        The URL of the write is known from the start and this method contract states that no consideration needs to be taken w.r.t. the stream state.
        Specified by:
        createReader in class AbstractContentWriter
        Returns:
        Returns a reader onto the location referenced by this instance. The instance must always be a new instance and never null.
        Throws:
        ContentIOException
      • canWrite

        public boolean canWrite()
        Returns:
        Returns true always