Interface LogFileStorage

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean retrieve​(java.io.OutputStream stream)
      Deprecated.
      Writes a log file to the given stream
      boolean store​(java.io.InputStream stream, long length, java.util.Date lastModified)
      Deprecated.
      Stores a log file read from the given stream
    • Method Detail

      • store

        boolean store​(java.io.InputStream stream,
                      long length,
                      java.util.Date lastModified)
               throws java.io.IOException,
                      LogFileStorageException
        Deprecated.
        Stores a log file read from the given stream
        Parameters:
        stream - the input stream
        length - the file length
        lastModified - the file modification time
        Returns:
        true if successful
        Throws:
        java.io.IOException - if an io error occurs
        LogFileStorageException - if other errors occur
      • retrieve

        boolean retrieve​(java.io.OutputStream stream)
                  throws java.io.IOException,
                         LogFileStorageException
        Deprecated.
        Writes a log file to the given stream
        Parameters:
        stream - the output stream
        Returns:
        true if successful
        Throws:
        java.io.IOException - if an io error occurs
        LogFileStorageException - if other errors occur