Uses of Class
xsmeral.semnet.crawler.model.URLEntry

Packages that use URLEntry
xsmeral.semnet.crawler Core classes of the crawler - the crawler/processor itself, host manager, URL manager, DB layer 
 

Uses of URLEntry in xsmeral.semnet.crawler
 

Methods in xsmeral.semnet.crawler that return types with arguments of type URLEntry
 Collection<URLEntry> URLManager.fetchEntries(URLManager.Query q, int ownerId)
          Retrieves URLs based on the given query.
 Collection<URLEntry> URLManager.listBroken()
          Returns list of URL marked as not working.
 Collection<URLEntry> URLManager.listLocked()
          Returns list of locked entries.
 

Methods in xsmeral.semnet.crawler with parameters of type URLEntry
 boolean URLManager.addEntry(URLEntry entry)
          Adds given entry to DB.
 void URLManager.returnEntry(URLEntry entry)
          Updates and unlocks the given entry in DB.
 boolean URLManager.unlockUrl(URLEntry entry)
          Unlocks the URL specified by given entry.
 void URLManager.updateEntry(URLEntry entry)
          Updates the given entry in DB.
 

Method parameters in xsmeral.semnet.crawler with type arguments of type URLEntry
 int URLManager.addEntries(Collection<URLEntry> entries)
          Adds given entries to DB.
 boolean URLManager.unlockUrls(Collection<URLEntry> entries)
          See unlockUrl