ExecutionFileStorage
public interface LogFileStorage
Modifier and Type | Method and 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
|
boolean store(java.io.InputStream stream, long length, java.util.Date lastModified) throws java.io.IOException, LogFileStorageException
stream
- the input streamlength
- the file lengthlastModified
- the file modification timejava.io.IOException
- if an io error occursLogFileStorageException
- if other errors occurboolean retrieve(java.io.OutputStream stream) throws java.io.IOException, LogFileStorageException
stream
- the output streamjava.io.IOException
- if an io error occursLogFileStorageException
- if other errors occur