Changes between Version 3 and Version 4 of ApertureDataAccessor


Ignore:
Timestamp:
10/17/05 22:57:38 (19 years ago)
Author:
sauermann
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ApertureDataAccessor

    v3 v4  
    11= 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 
    24 
    35== Java Interface == 
     
    2830         * Specific DataAccessor implementations may accept additional parameters through the params Map. 
    2931         *  
    30          * @param url         The url used to address the resource. 
     32         * @param uri         The uri used to address the resource. 
    3133         * @param dataSource  The source that will be registered as the source of the DataObject. 
    3234         * @param accessData  Optional database containing information about previous accesses. 
     
    3739         * @throws IOException When any other kind of I/O error occurs. 
    3840         */ 
    39         public DataObject get(String url, DataSource source, 
    40             AccessData accessData, Map<?,?> params) throws UrlNotFoundException, IOException; 
     41        public DataObject get(URI uri, DataSource source, 
     42            AccessData accessData, Map<?,?> params) throws UriNotFoundException, IOException; 
    4143} 
    4244}}}