Changes between Version 5 and Version 6 of ApertureDataObject
- Timestamp:
- 10/17/05 22:33:23 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureDataObject
v5 v6 1 1 = DataObject = 2 2 3 '''ToDo''': the getMetadata method should probably return some kind of RDF statement container (the same interface that will be used in Extractor) instead of a Map with key-value pairs, the keys of which are specific to the type of !DataObject/!DataSource. 3 '''ToDo''': the getMetadata method should probably return some kind of RDF statement container (the same interface that will be used in Extractor) instead of a Map with key-value pairs, the keys of which are specific to the type of !DataObject/!DataSource. 4 5 Leo about TODO: ok with me to return an RDFMap 4 6 5 7 ChangeLog: … … 12 14 /** 13 15 * A general interface for data objects. A data object consists of an identifier, 14 * binary content and metadata. 16 * binary content and metadata. The object is used primarily to extract 17 * information from datasources. For the extraction, both the InputStream 18 * returned by getContent() and 19 * the RDF metadata returned by getMetadata() are important. 20 * 15 21 */ 16 22 public interface DataObject { … … 72 78 73 79 /** 74 * Get the source-specific metadata .80 * Get the source-specific metadata and data. 75 81 * The used keys and values and implementation-dependent. 76 82 * For java1.4 compability reasons, the map is untyped.