Changes between Version 6 and Version 7 of DynamicDatasources


Ignore:
Timestamp:
04/12/06 16:03:02 (18 years ago)
Author:
grimnes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DynamicDatasources

    v6 v7  
    3131 * Create a new Eclipse project, copy the main aperture jar (mine is aperture-2006.1-alpha-2.jar) and the 3 sesame jars into the project and add them to the build-path.  
    3232 * Create a new class that implements CrawlerFactory, tell Eclipse to add all unimplemented methods. 
    33  * Create a new class that implements DataSourceFactory, add unimplemented methods.  
    34  * Create a new class that extends DataSourceBase - create a public static URI called TYPE, and return this in the getType(). 
     33 * Create a new class that implements DataSourceFactory, add unimplemented methods, make newInstance return a new instance of the same class. 
     34 * Create a new class that extends DataSourceBase - create a public static URI called TYPE, and return this in the getType(). Make DataSourceFactory.getSupportedType and CrawlerFactory.getSupportedTypes return the same. 
    3535{{{ 
    3636public static URI TYPE=new URIImpl("http://example.org/RSSDataSource"); 
    3737}}} 
    38  * Create a new  
     38 * Create a new class that extends CrawlerBase.