mirror of
https://github.com/moparisthebest/k-9
synced 2024-10-31 23:55:08 -04:00
19 lines
318 B
Java
19 lines
318 B
Java
|
|
package com.fsck.k9;
|
|
|
|
import com.fsck.k9.mail.Flag;
|
|
|
|
public interface SearchSpecification {
|
|
|
|
public Flag[] getRequiredFlags();
|
|
|
|
public Flag[] getForbiddenFlags();
|
|
|
|
public boolean isIntegrate();
|
|
|
|
public String getQuery();
|
|
|
|
public String[] getAccountUuids();
|
|
|
|
public String[] getFolderNames();
|
|
} |