1 17 18 19 20 package org.apache.lenya.search.crawler; 21 22 import java.io.InputStream ; 23 import java.util.List ; 24 25 26 29 public interface ContentHandler { 30 35 String getAuthor(); 36 37 42 String getCategories(); 43 44 49 String getContents(); 50 51 56 String getDescription(); 57 58 63 String getHREF(); 64 65 70 String getKeywords(); 71 72 77 List getLinks(); 78 79 84 long getPublished(); 85 86 91 boolean getRobotFollow(); 92 93 98 boolean getRobotIndex(); 99 100 105 String getTitle(); 106 107 112 void parse(InputStream in); 113 } 114 | Popular Tags |