Site.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:2k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.api.model;
  2. import java.net.URL;
  3. /**
  4.  *
  5.  * $Id: Site.java,v 1.23 2003/04/10 16:19:03 vanrogu Exp $
  6.  *
  7.  * @author G黱ther Van Roey
  8.  */
  9. public interface Site {
  10.     /**
  11.      * if the site is newly discovered, we're not going to fetch resources
  12.      * until we have interpreted the site's robots.txt rules.
  13.      */
  14.     public static final int STATE_DISCOVERED = 0;
  15.     /**
  16.      * if the robots.txt was handled (interpreted or missing), we can
  17.      * fetch resources from it.
  18.      */
  19.     public static final int STATE_ROBOTSTXT_HANDLED = 1;
  20.     /**
  21.      * if robots.txt couldn't be fetched (but seems to be there), no resources
  22.      * will be fetched from the site!
  23.      */
  24.     public static final int STATE_ROBOTSTXT_ERROR = 2;
  25.     /**
  26.      * if robots.txt was not found, all resources can be fetched !
  27.      */
  28.     public static final int STATE_ROBOTSTXT_UNEXISTING = 3;
  29.     /**
  30.      * if robots.txt was skipped, all resources can be fetched !
  31.      */
  32.     public static final int STATE_ROBOTSTXT_SKIPPED = 4;
  33.     public int getState();
  34.     public String getHost();
  35.     public int getPort();
  36.     public boolean isRobotsTXTHandled();
  37.     public boolean getObeyRobotsTXT();
  38.     public boolean getFetchRobotsTXT();
  39.     public URL getURL();
  40.     public Folder[] getRootFolders();
  41.     public Folder getRootFolder(String name);
  42.     public Resource[] getRootResources();
  43.     public Resource[] getAllResources();
  44.     public Cookie[] getCookies();
  45.     public String getCookieString();
  46.     public boolean getUseCookies();
  47.     public boolean getUseProxy();
  48.     public String getUserAgent ( );
  49.     public boolean isBaseSite ( );
  50.     public boolean mustHandle ( );
  51.  }