Uses of Interface
org.semanticdesktop.aperture.crawler.Crawler

Packages that use Crawler
org.semanticdesktop.aperture.addressbook   
org.semanticdesktop.aperture.addressbook.thunderbird   
org.semanticdesktop.aperture.crawler   
org.semanticdesktop.aperture.crawler.base   
org.semanticdesktop.aperture.crawler.filesystem   
org.semanticdesktop.aperture.crawler.ical   
org.semanticdesktop.aperture.crawler.imap   
org.semanticdesktop.aperture.crawler.mail   
org.semanticdesktop.aperture.crawler.mbox   
org.semanticdesktop.aperture.crawler.samba   
org.semanticdesktop.aperture.crawler.web   
org.semanticdesktop.aperture.outlook Microsoft Outlook Crawler This package holds a crawler for Microsoft Outlook. 
org.semanticdesktop.aperture.websites   
org.semanticdesktop.aperture.websites.bibsonomy   
org.semanticdesktop.aperture.websites.delicious   
org.semanticdesktop.aperture.websites.flickr   
 

Uses of Crawler in org.semanticdesktop.aperture.addressbook
 

Classes in org.semanticdesktop.aperture.addressbook that implement Crawler
 class AddressbookCrawler
          This is a superclass of all addressbook crawlers.
 

Uses of Crawler in org.semanticdesktop.aperture.addressbook.thunderbird
 

Classes in org.semanticdesktop.aperture.addressbook.thunderbird that implement Crawler
 class ThunderbirdCrawler
          This is a crawler for the thunderbird address book.
 

Methods in org.semanticdesktop.aperture.addressbook.thunderbird that return Crawler
 Crawler ThunderbirdAddressbookCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.crawler
 

Methods in org.semanticdesktop.aperture.crawler that return Crawler
 Crawler CrawlerFactory.getCrawler(DataSource dataSource)
          Return a Crawler that can crawl the specified DataSource.
 

Methods in org.semanticdesktop.aperture.crawler with parameters of type Crawler
 void CrawlerHandler.accessingObject(Crawler crawler, String url)
          Notification that the Crawler is going to start accessing the specified data object.
 void CrawlerHandler.clearFinished(Crawler crawler, ExitCode exitCode)
          Notification that the Crawler has finished clearing the information about the state of the datasource.
 void CrawlerHandler.clearingObject(Crawler crawler, String url)
          Notification that the Crawler is removing all information it knows about the specified url.
 void CrawlerHandler.clearStarted(Crawler crawler)
          Notification that the specified Crawler has started clearing the information it had about the state of the datasource.
 void CrawlerHandler.crawlStarted(Crawler crawler)
          Notification that the specified Crawler has started crawling its DataSource for DataObjects.
 void CrawlerHandler.crawlStopped(Crawler crawler, ExitCode exitCode)
          Notification that the specified Crawler has stopped crawling its DataSource for DataObjects.
 RDFContainerFactory CrawlerHandler.getRDFContainerFactory(Crawler crawler, String url)
          Returns a RDFContainerFactory that will be used to provide RDFContainers that will hold a DataObject's metadata.
 void CrawlerHandler.objectChanged(Crawler crawler, DataObject object)
          Notification that the Crawler has found a changed resource in the domain it is crawling.
 void CrawlerHandler.objectNew(Crawler crawler, DataObject object)
          Notification that the Crawler has found a new resource in the domain it is crawling.
 void CrawlerHandler.objectNotModified(Crawler crawler, String url)
          Notification that the Crawler has found a resource that has not been modified since the previous crawl.
 void CrawlerHandler.objectRemoved(Crawler crawler, String url)
          Notification that the specified resource that has been found in the past could no longer be found.
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.base
 

Classes in org.semanticdesktop.aperture.crawler.base that implement Crawler
 class CrawlerBase
          An implementation of the Crawler interface that offers generic implementations for some of its methods.
 

Methods in org.semanticdesktop.aperture.crawler.base with parameters of type Crawler
 void CrawlerHandlerBase.accessingObject(Crawler crawler, String url)
          This method implementation doesn't do anything, it is meant to be overridden.
 void CrawlerHandlerBase.clearFinished(Crawler crawler, ExitCode exitCode)
          This method implementation doesn't do anything, it is meant to be overridden.
 void CrawlerHandlerBase.clearingObject(Crawler crawler, String url)
          This method implementation doesn't do anything, it is meant to be overridden.
 void CrawlerHandlerBase.clearStarted(Crawler crawler)
          This method implementation doesn't do anything, it is meant to be overridden.
 void CrawlerHandlerBase.crawlStarted(Crawler crawler)
          This method implementation doesn't do anything, it is meant to be overridden.
 void CrawlerHandlerBase.crawlStopped(Crawler crawler, ExitCode exitCode)
          This method implementation doesn't do anything, it is meant to be overridden.
 RDFContainerFactory CrawlerHandlerBase.getRDFContainerFactory(Crawler crawler, String url)
          Returns an rdf container factory.
 void CrawlerHandlerBase.objectChanged(Crawler crawler, DataObject object)
          This method implementation only disposes the data object and does nothing more.
 void CrawlerHandlerBase.objectNew(Crawler crawler, DataObject object)
          This method implementation only disposes the data object and does nothing more.
 void CrawlerHandlerBase.objectNotModified(Crawler crawler, String url)
          This method implementation doesn't do anything, it is meant to be overridden.
 void CrawlerHandlerBase.objectRemoved(Crawler crawler, String url)
          This method implementation doesn't do anything, it is meant to be overridden.
protected  void CrawlerHandlerBase.processBinary(Crawler crawler, DataObject dataObject)
          Default and reference implementation of the handling of objects found in the crawling process: Identify the mime-type, invoke Extractors.
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.filesystem
 

Classes in org.semanticdesktop.aperture.crawler.filesystem that implement Crawler
 class FileSystemCrawler
          A Crawler implementation for crawling file system sources modeled by a FileSystemDataSource.
 

Methods in org.semanticdesktop.aperture.crawler.filesystem that return Crawler
 Crawler FileSystemCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.ical
 

Classes in org.semanticdesktop.aperture.crawler.ical that implement Crawler
 class IcalCrawler
          A Crawler implementation for crawling ical files.
 

Methods in org.semanticdesktop.aperture.crawler.ical that return Crawler
 Crawler IcalCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.imap
 

Classes in org.semanticdesktop.aperture.crawler.imap that implement Crawler
 class ImapCrawler
          A Combined Crawler and DataAccessor implementation for IMAP.
 

Methods in org.semanticdesktop.aperture.crawler.imap that return Crawler
 Crawler ImapCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.mail
 

Classes in org.semanticdesktop.aperture.crawler.mail that implement Crawler
 class AbstractJavaMailCrawler
          An abstract crawler implementation that works with an email store implementation hidden behind the Java Mail API.
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.mbox
 

Classes in org.semanticdesktop.aperture.crawler.mbox that implement Crawler
 class MboxCrawler
          A crawler implementation for mbox files.
 

Methods in org.semanticdesktop.aperture.crawler.mbox that return Crawler
 Crawler MboxCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.samba
 

Classes in org.semanticdesktop.aperture.crawler.samba that implement Crawler
 class SambaCrawler
          A crawler for Samba shares.
 

Methods in org.semanticdesktop.aperture.crawler.samba that return Crawler
 Crawler SambaCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.crawler.web
 

Classes in org.semanticdesktop.aperture.crawler.web that implement Crawler
 class WebCrawler
          A Crawler implementation for WebDataSources.
 

Methods in org.semanticdesktop.aperture.crawler.web that return Crawler
 Crawler WebCrawlerFactory.getCrawler(DataSource source)
           
 

Uses of Crawler in org.semanticdesktop.aperture.outlook
 

Classes in org.semanticdesktop.aperture.outlook that implement Crawler
 class OutlookCrawler
          Outlook Crawler Crawler that wraps Microsoft Outlook.
 

Methods in org.semanticdesktop.aperture.outlook that return Crawler
 Crawler OutlookCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.websites
 

Classes in org.semanticdesktop.aperture.websites that implement Crawler
 class AbstractTagCrawler
           
 

Uses of Crawler in org.semanticdesktop.aperture.websites.bibsonomy
 

Classes in org.semanticdesktop.aperture.websites.bibsonomy that implement Crawler
 class BibsonomyCrawler
          Crawls bibtex entries of a bibsonomy user.
 

Methods in org.semanticdesktop.aperture.websites.bibsonomy that return Crawler
 Crawler BibsonomyCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.websites.delicious
 

Classes in org.semanticdesktop.aperture.websites.delicious that implement Crawler
 class DeliciousCrawler
          A del.icio.us crawlers
 

Methods in org.semanticdesktop.aperture.websites.delicious that return Crawler
 Crawler DeliciousCrawlerFactory.getCrawler(DataSource dataSource)
           
 

Uses of Crawler in org.semanticdesktop.aperture.websites.flickr
 

Classes in org.semanticdesktop.aperture.websites.flickr that implement Crawler
 class FlickrCrawler
          Crawls metadata from Flickr accounts.
 

Methods in org.semanticdesktop.aperture.websites.flickr that return Crawler
 Crawler FlickrCrawlerFactory.getCrawler(DataSource dataSource)
           
 



Copyright © 2010 Aperture Development Team. All Rights Reserved.