com.dtolabs.rundeck.core.logging
Interface LogFileStorage

All Known Subinterfaces:
LogFileStoragePlugin

Deprecated. no longer used, replaced by ExecutionFileStorage

public interface LogFileStorage

Handles log file storage and retrieval


Method Summary
 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
LogFileStorageException

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
LogFileStorageException