Java Doc for CrawlHost.java in  » Web-Crawler » heritrix » org » archive » crawler » datamodel » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Crawler » heritrix » org.archive.crawler.datamodel 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.archive.crawler.datamodel.CrawlHost

CrawlHost
public class CrawlHost implements Serializable,CrawlSubstats.HasCrawlSubstats(Code)
Represents a single remote "host". An host is a name for which there is a dns record or an IP-address. This might be a machine or a virtual host.
author:
   gojomo


Field Summary
final public static  longIP_NEVER_EXPIRES
    
final public static  longIP_NEVER_LOOKED_UP
    
protected  CrawlSubstatssubstats
    

Constructor Summary
public  CrawlHost(String hostname)
     Create a new CrawlHost object.
public  CrawlHost(String hostname, String countryCode)
     Create a new CrawlHost object.

Method Summary
public  StringgetCountryCode()
    
public  longgetEarliestNextURIEmitTime()
     Get the earliest time a URI for this host could be emitted.
public  StringgetHostName()
     Get the host name.
public  InetAddressgetIP()
     Get the IP address for this host.
public  longgetIpFetched()
     Get the time when the IP address for this host was last looked up.
public  longgetIpTTL()
     Get the TTL value from the dns record for this host.
public  CrawlSubstatsgetSubstats()
    
public  booleanhasBeenLookedUp()
     Return true if the IP for this host has been looked up.
public  voidsetCountryCode(String countryCode)
    
public  voidsetEarliestNextURIEmitTime(long earliestNextURIEmitTime)
     Set the earliest time a URI for this host could be emitted.
public  voidsetIP(InetAddress address, long ttl)
     Set the IP address for this host.
public  StringtoString()
    

Field Detail
IP_NEVER_EXPIRES
final public static long IP_NEVER_EXPIRES(Code)
Flag value indicating always-valid IP



IP_NEVER_LOOKED_UP
final public static long IP_NEVER_LOOKED_UP(Code)
Flag value indicating an IP has not yet been looked up



substats
protected CrawlSubstats substats(Code)




Constructor Detail
CrawlHost
public CrawlHost(String hostname)(Code)
Create a new CrawlHost object.
Parameters:
  hostname - the host name for this host.



CrawlHost
public CrawlHost(String hostname, String countryCode)(Code)
Create a new CrawlHost object.
Parameters:
  hostname - the host name for this host.
Parameters:
  countryCode - the country code for this host.




Method Detail
getCountryCode
public String getCountryCode()(Code)
Get country code of this host Retruns country code or null if not availabe



getEarliestNextURIEmitTime
public long getEarliestNextURIEmitTime()(Code)
Get the earliest time a URI for this host could be emitted. This only has effect if constraints on bandwidth per host is set. Returns the earliestNextURIEmitTime.



getHostName
public String getHostName()(Code)
Get the host name. Returns the host name.



getIP
public InetAddress getIP()(Code)
Get the IP address for this host. the IP address for this host.



getIpFetched
public long getIpFetched()(Code)
Get the time when the IP address for this host was last looked up. the time when the IP address for this host was last looked up.



getIpTTL
public long getIpTTL()(Code)
Get the TTL value from the dns record for this host. the TTL value from the dns record for this host -- in seconds --or -1 if this lookup should be valid forever (numeric ip).



getSubstats
public CrawlSubstats getSubstats()(Code)



hasBeenLookedUp
public boolean hasBeenLookedUp()(Code)
Return true if the IP for this host has been looked up. Returns true even if the lookup failed. true if the IP for this host has been looked up.



setCountryCode
public void setCountryCode(String countryCode)(Code)
Set country code for this hos
Parameters:
  countryCode - The country code of this host



setEarliestNextURIEmitTime
public void setEarliestNextURIEmitTime(long earliestNextURIEmitTime)(Code)
Set the earliest time a URI for this host could be emitted. This only has effect if constraints on bandwidth per host is set.
Parameters:
  earliestNextURIEmitTime - The earliestNextURIEmitTime to set.



setIP
public void setIP(InetAddress address, long ttl)(Code)
Set the IP address for this host.
Parameters:
  address -
Parameters:
  ttl - the TTL from the dns record in seconds or -1 if it should liveforever (is a numeric IP).



toString
public String toString()(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.