01: /* 02: * Created on May 12, 2005 03: * 04: * A class that starts a thread 05: */ 06: package org.enhydra.snapperAdmin.spec; 07: 08: /** 09: * @author Igor Smirnov 10: */ 11: public interface Index { 12: 13: void index(String id); 14: 15: public void setDoStop(boolean n) throws Exception; 16: 17: }