public interface IInputDataHandler
Exposes members for loading original document from storage
Modifier and Type | Method and Description |
---|---|
void |
addFile(String guid,
InputStream content)
Adds file to storage.
|
List<FileDescription> |
getEntities(String path)
Gets files and folders for specified path.
|
InputStream |
getFile(String guid)
Retrieves file from storage.
|
FileDescription |
getFileDescription(String guid)
Gets the file description.
|
Date |
getLastModificationDate(String guid)
Gets the file last modification date.
|
void addFile(String guid, InputStream content) throws Exception
guid
- This is user defined key that identifies file in the storage.content
- Stream to save data to storage.Exception
- if any.InputStream getFile(String guid) throws Exception
guid
- This is user defined key that identifies file in the storage.Exception
- if any.List<FileDescription> getEntities(String path) throws Exception
path
- The path.Exception
- if any.FileDescription getFileDescription(String guid) throws Exception
guid
- The unique identifier.FileDescription
object.Exception
- if any.Copyright © 2018. All rights reserved.