1 7 8 package org.enhydra.snapper.spec; 9 10 import java.sql.Timestamp ; 11 12 import com.lutris.appserver.server.sql.DBTransaction; 13 14 15 public interface Site extends BaseSpec{ 16 17 public String getName() throws Exception ; 18 public String getID() throws Exception ; 19 public String getLanguage() throws Exception ; 20 public int getSize() throws Exception ; 21 public int getAge() throws Exception ; 22 public boolean getRTF() throws Exception ; 23 public boolean getDOC() throws Exception ; 24 public boolean getTXT() throws Exception ; 25 public boolean getHTML() throws Exception ; 26 public boolean getMSG() throws Exception ; 27 public boolean getPDF() throws Exception ; 28 public boolean getXLS() throws Exception ; 29 public boolean getEML() throws Exception ; 30 public boolean getPPT() throws Exception ; 31 public boolean getPPS() throws Exception ; 32 public boolean getZIP() throws Exception ; 33 public boolean getOO() throws Exception ; 34 public boolean getOTHER() throws Exception ; 35 public Timestamp getLASTUPDATE() throws Exception ; 36 public Timestamp getLASTQUERY() throws Exception ; 37 public int getFILENR() throws Exception ; 38 public int getQUERYNR() throws Exception ; 39 public boolean getSEARCH() throws Exception ; 40 public boolean getDOWNLOAD() throws Exception ; 41 public String getINDEXDIR() throws Exception ; 42 public String getFILTERDB() throws Exception ; 43 public String getFILTERTABLE() throws Exception ; 44 public String getFILTERCOLUMN() throws Exception ; 45 public String getINCLUDEDB() throws Exception ; 46 public String getINCLUDETABLE() throws Exception ; 47 public String getINCLUDECOLUMN() throws Exception ; 48 public String getMETADB() throws Exception ; 49 public String getMETATABLE() throws Exception ; 50 public String getMETAFILE() throws Exception ; 51 public String getMETAKEY() throws Exception ; 52 public String getMETAVALUE() throws Exception ; 53 public String getINCLUDECOLUMNMODIFIED() throws Exception ; 54 public boolean getLOCKED() throws Exception ; 55 56 public void setName(String str) throws Exception ; 57 public void setLanguage(String str) throws Exception ; 58 public void setSize(String str) throws Exception ; 59 public void setAge(String str) throws Exception ; 60 public void setRTF(String str) throws Exception ; 61 public void setDOC(String str) throws Exception ; 62 public void setTXT(String str) throws Exception ; 63 public void setHTML(String str) throws Exception ; 64 public void setMSG(String str) throws Exception ; 65 public void setPDF(String str) throws Exception ; 66 public void setXLS(String str) throws Exception ; 67 public void setEML(String str) throws Exception ; 68 public void setPPT(String str) throws Exception ; 69 public void setPPS(String str) throws Exception ; 70 public void setZIP(String str) throws Exception ; 71 public void setOO(String str) throws Exception ; 72 public void setOTHER(String str) throws Exception ; 73 public void setLASTUPDATE(Timestamp str) throws Exception ; 74 public void setLASTQUERY(Timestamp str) throws Exception ; 75 public void setFILENR(int str) throws Exception ; 76 public void setQUERYNR(int str) throws Exception ; 77 public void setSEARCH(String str) throws Exception ; 78 public void setDOWNLOAD(String str) throws Exception ; 79 public void setINDEXDIR(String str) throws Exception ; 80 public void setFILTERDB(String str) throws Exception ; 81 public void setFILTERTABLE(String str) throws Exception ; 82 public void setFILTERCOLUMN(String str) throws Exception ; 83 public void setINCLUDEDB(String str) throws Exception ; 84 public void setINCLUDETABLE(String str) throws Exception ; 85 public void setINCLUDECOLUMN(String str) throws Exception ; 86 public void setINCLUDECOLUMNMODIFIED(String str) throws Exception ; 87 public void setMETADB(String str) throws Exception ; 88 public void setMETATABLE(String str) throws Exception ; 89 public void setMETAFILE(String str) throws Exception ; 90 public void setMETAKEY(String str) throws Exception ; 91 public void setMETAVALUE(String str) throws Exception ; 92 public void setLOCKED(String str) throws Exception ; 93 94 public Site findSiteByID(String id, DBTransaction dbt) throws Exception ; 95 public void deleteDir(String index) throws Exception ; 96 97 98 } 99 | Popular Tags |