KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > snapper > spec > NotIndexed


1 /*
2  * snapper
3  *
4  * Enhydra super-servlet specification object
5  *
6  */

7
8 package org.enhydra.snapper.spec;
9
10 import java.sql.Timestamp JavaDoc;
11
12 import com.lutris.appserver.server.sql.DBTransaction;
13
14
15 public interface NotIndexed extends BaseSpec{
16
17     public String JavaDoc getIndexed() throws Exception JavaDoc;
18     public void setIndexed(String JavaDoc str) throws Exception JavaDoc;
19     
20     public String JavaDoc getLink() throws Exception JavaDoc;
21     public void setLink(String JavaDoc str) throws Exception JavaDoc;
22     
23     public NotIndexed findPathByID(String JavaDoc id, DBTransaction dbt) throws Exception JavaDoc;
24     public NotIndexed[] getList(DBTransaction dbt) throws Exception JavaDoc;
25     public NotIndexed[] getListForID(DBTransaction dbt, String JavaDoc id) throws Exception JavaDoc;
26
27 }
28
Popular Tags