Package lumis.portal.file.metadata
Interface IMetadataExtractor
-
- All Known Implementing Classes:
ImageMetadataExtractor
,MultimediaMetadataExtractor
@StableMinor(version="14.0", sinceVersion="8.0") public interface IMetadataExtractor
Provides file meta data information extraction.- Since:
- 6.1.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
extractMetadata(InputStream inputStream, String contentType, FileMetadata fileMetadata)
Extracts the meta data information from the given input stream.
-
-
-
Method Detail
-
extractMetadata
void extractMetadata(InputStream inputStream, String contentType, FileMetadata fileMetadata) throws PortalException
Extracts the meta data information from the given input stream. The meta data information extracted is to be set in the givenfileMetadata
parameter.- Parameters:
inputStream
- the input stream source of meta data information.contentType
- the content type of the file.fileMetadata
- the meta data information to be updated.- Throws:
PortalException
- Since:
- 8.0.0
-
-