1 /*2 * snapper 3 *4 * Enhydra super-servlet specification object5 * 6 */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 Indexed extends BaseSpec{ 16 17 public String getName() throws Exception ; 18 public void setName(String str) throws Exception ;19 20 public Timestamp getTime() throws Exception ;21 public void setTime(Timestamp str) throws Exception ;22 23 public String getLASTTYPE() throws Exception ;24 public void setLASTTYPE(String str) throws Exception ;25 26 public void setLASTSTART(Timestamp str) throws Exception ;27 public Timestamp getLASTSTART() throws Exception ;28 29 public int getDoc() throws Exception ;30 public void setDoc(String str) throws Exception ; 31 32 public String getID() throws Exception ; 33 public Indexed[] getList(DBTransaction dbt) throws Exception ; 34 35 36 }37