Changes between Version 3 and Version 4 of ApertureDataAccessor
- Timestamp:
- 10/17/05 22:57:38 (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ApertureDataAccessor
v3 v4 1 1 = DataAccessors = 2 3 * using URI as identifier, not String. more type-safe. hence also the UriNotFoundException. Parallel to ApertureDataObject which is also based on Java.net.URI 2 4 3 5 == Java Interface == … … 28 30 * Specific DataAccessor implementations may accept additional parameters through the params Map. 29 31 * 30 * @param ur l The urlused to address the resource.32 * @param uri The uri used to address the resource. 31 33 * @param dataSource The source that will be registered as the source of the DataObject. 32 34 * @param accessData Optional database containing information about previous accesses. … … 37 39 * @throws IOException When any other kind of I/O error occurs. 38 40 */ 39 public DataObject get( String url, DataSource source,40 AccessData accessData, Map<?,?> params) throws Ur lNotFoundException, IOException;41 public DataObject get(URI uri, DataSource source, 42 AccessData accessData, Map<?,?> params) throws UriNotFoundException, IOException; 41 43 } 42 44 }}}