Changes between Version 12 and Version 13 of ApertureExtractor
- Timestamp:
- 10/14/05 11:51:27 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureExtractor
v12 v13 50 50 public interface Extractor { 51 51 52 public void extract(URI id, InputStream stream, Charset charset, String mime Type, Repository repository);52 public void extract(URI id, InputStream stream, Charset charset, String mimetype, Repository repository); 53 53 } 54 54 }}} 55 56 Notes: 57 58 * The mimetype is specified because the same Extractor can be used for several mimetypes (e.g. !OpenOfficeExtractor or !OpenDocumentExtractor) while there may be slight differences for different mimetypes. 59 * A Sesame Repository is specified to the Extractor to put its contents in. The application can then decide whether this is an in-memory repository where only this Extractor is operating on, whether the statements go directly into a persistent storage, whether an optimized Repository implementation is used, etc.