2010-04-21 22:20:35 -04:00
|
|
|
|
|
|
|
package com.fsck.k9;
|
|
|
|
|
|
|
|
import com.fsck.k9.mail.Flag;
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public interface SearchSpecification {
|
2010-04-29 00:59:14 -04:00
|
|
|
|
2010-04-21 22:20:35 -04:00
|
|
|
public Flag[] getRequiredFlags();
|
|
|
|
|
|
|
|
public Flag[] getForbiddenFlags();
|
2010-04-29 00:59:14 -04:00
|
|
|
|
2010-04-21 22:20:35 -04:00
|
|
|
public boolean isIntegrate();
|
|
|
|
|
|
|
|
public String getQuery();
|
2010-04-29 00:59:14 -04:00
|
|
|
|
2010-04-21 22:20:35 -04:00
|
|
|
public String[] getAccountUuids();
|
2010-04-29 00:59:14 -04:00
|
|
|
|
2010-04-24 15:10:57 -04:00
|
|
|
public String[] getFolderNames();
|
2010-04-21 22:20:35 -04:00
|
|
|
}
|