1 17 package org.columba.mail.folder.search; 18 19 import java.util.List ; 20 21 import org.columba.core.filter.FilterCriteria; 22 import org.columba.core.filter.IFilterRule; 23 24 29 public interface QueryEngine { 30 38 String [] getCaps(); 39 40 48 void sync() throws Exception ; 49 50 57 List queryEngine(IFilterRule filter) throws Exception ; 58 59 69 List queryEngine(IFilterRule filter, Object [] uids) 70 throws Exception ; 71 72 78 void messageAdded(Object uid) throws Exception ; 79 80 86 void messageRemoved(Object uid) throws Exception ; 87 88 93 void reset() throws Exception ; 94 95 void save(); 96 } 97 | Popular Tags |