Package com.dtolabs.rundeck.core.logging
Interface LogFileStorage
-
- All Known Subinterfaces:
LogFileStoragePlugin
public interface LogFileStorageDeprecated.no longer used, replaced byExecutionFileStorageHandles log file storage and retrieval
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanretrieve(java.io.OutputStream stream)Deprecated.Writes a log file to the given streambooleanstore(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, LogFileStorageExceptionDeprecated.Stores a log file read from the given stream- Parameters:
stream- the input streamlength- the file lengthlastModified- the file modification time- Returns:
- true if successful
- Throws:
java.io.IOException- if an io error occursLogFileStorageException- if other errors occur
-
retrieve
boolean retrieve(java.io.OutputStream stream) throws java.io.IOException, LogFileStorageExceptionDeprecated.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 occursLogFileStorageException- if other errors occur
-
-