mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 03:55:04 -05:00
210 lines
5.6 KiB
Java
210 lines
5.6 KiB
Java
package com.fsck.k9.mail;
|
|
|
|
import com.fsck.k9.Preferences;
|
|
|
|
|
|
public abstract class Folder
|
|
{
|
|
private String status = null;
|
|
private long lastChecked = 0;
|
|
private long lastPush = 0;
|
|
public enum OpenMode
|
|
{
|
|
READ_WRITE, READ_ONLY,
|
|
}
|
|
// NONE is obsolete, it will be translated to NO_CLASS for display and to INHERITED for sync and push
|
|
public enum FolderClass
|
|
{
|
|
NONE, NO_CLASS, INHERITED, FIRST_CLASS, SECOND_CLASS;
|
|
}
|
|
|
|
public enum FolderType
|
|
{
|
|
HOLDS_FOLDERS, HOLDS_MESSAGES,
|
|
}
|
|
|
|
/**
|
|
* Forces an open of the MailProvider. If the provider is already open this
|
|
* function returns without doing anything.
|
|
*
|
|
* @param mode READ_ONLY or READ_WRITE
|
|
*/
|
|
public abstract void open(OpenMode mode) throws MessagingException;
|
|
|
|
/**
|
|
* Forces a close of the MailProvider. Any further access will attempt to
|
|
* reopen the MailProvider.
|
|
*/
|
|
public abstract void close();
|
|
|
|
/**
|
|
* @return True if further commands are not expected to have to open the
|
|
* connection.
|
|
*/
|
|
public abstract boolean isOpen();
|
|
|
|
/**
|
|
* Get the mode the folder was opened with. This may be different than the mode the open
|
|
* was requested with.
|
|
* @return
|
|
*/
|
|
public abstract OpenMode getMode() throws MessagingException;
|
|
|
|
public abstract boolean create(FolderType type) throws MessagingException;
|
|
|
|
/**
|
|
* Create a new folder with a specified display limit. Not abstract to allow
|
|
* remote folders to not override or worry about this call if they don't care to.
|
|
*/
|
|
public boolean create(FolderType type, int displayLimit) throws MessagingException
|
|
{
|
|
return create(type);
|
|
}
|
|
|
|
public abstract boolean exists() throws MessagingException;
|
|
|
|
/**
|
|
* @return A count of the messages in the selected folder.
|
|
*/
|
|
public abstract int getMessageCount() throws MessagingException;
|
|
|
|
public abstract int getUnreadMessageCount() throws MessagingException;
|
|
|
|
public abstract Message getMessage(String uid) throws MessagingException;
|
|
|
|
public abstract Message[] getMessages(int start, int end, MessageRetrievalListener listener)
|
|
throws MessagingException;
|
|
|
|
/**
|
|
* Fetches the given list of messages. The specified listener is notified as
|
|
* each fetch completes. Messages are downloaded as (as) lightweight (as
|
|
* possible) objects to be filled in with later requests. In most cases this
|
|
* means that only the UID is downloaded.
|
|
*
|
|
* @param uids
|
|
* @param listener
|
|
*/
|
|
public abstract Message[] getMessages(MessageRetrievalListener listener)
|
|
throws MessagingException;
|
|
|
|
public Message[] getMessages(MessageRetrievalListener listener, boolean includeDeleted) throws MessagingException
|
|
{
|
|
return getMessages(listener);
|
|
}
|
|
|
|
public abstract Message[] getMessages(String[] uids, MessageRetrievalListener listener)
|
|
throws MessagingException;
|
|
|
|
public abstract void appendMessages(Message[] messages) throws MessagingException;
|
|
|
|
public void copyMessages(Message[] msgs, Folder folder) throws MessagingException {} ;
|
|
|
|
public void moveMessages(Message[] msgs, Folder folder) throws MessagingException {} ;
|
|
|
|
public void delete(Message[] msgs, String trashFolderName) throws MessagingException
|
|
{
|
|
for (Message message : msgs)
|
|
{
|
|
Message myMessage = getMessage(message.getUid());
|
|
myMessage.delete(trashFolderName);
|
|
}
|
|
}
|
|
|
|
public abstract void setFlags(Message[] messages, Flag[] flags, boolean value)
|
|
throws MessagingException;
|
|
|
|
public abstract void setFlags(Flag[] flags, boolean value) throws MessagingException;
|
|
|
|
public abstract String getUidFromMessageId(Message message) throws MessagingException;
|
|
|
|
public void expunge() throws MessagingException
|
|
{}
|
|
|
|
public abstract void fetch(Message[] messages, FetchProfile fp,
|
|
MessageRetrievalListener listener) throws MessagingException;
|
|
|
|
public abstract void delete(boolean recurse) throws MessagingException;
|
|
|
|
public abstract String getName();
|
|
|
|
public abstract Flag[] getPermanentFlags() throws MessagingException;
|
|
|
|
/**
|
|
*
|
|
* @param oldPushState
|
|
* @param message
|
|
* @return empty string to clear the pushState, null to leave the state as-is
|
|
*/
|
|
public String getNewPushState(String oldPushState, Message message)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public boolean supportsFetchingFlags()
|
|
{
|
|
return true;
|
|
}//isFlagSupported
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return getName();
|
|
}
|
|
|
|
public long getLastChecked()
|
|
{
|
|
return lastChecked;
|
|
}
|
|
|
|
public void setLastChecked(long lastChecked) throws MessagingException
|
|
{
|
|
this.lastChecked = lastChecked;
|
|
}
|
|
|
|
public long getLastPush()
|
|
{
|
|
return lastPush;
|
|
}
|
|
|
|
public void setLastPush(long lastCheckedDisplay) throws MessagingException
|
|
{
|
|
this.lastPush = lastCheckedDisplay;
|
|
}
|
|
|
|
public long getLastUpdate()
|
|
{
|
|
return Math.max(getLastChecked(), getLastPush());
|
|
}
|
|
|
|
public FolderClass getDisplayClass()
|
|
{
|
|
return FolderClass.NO_CLASS;
|
|
}
|
|
|
|
public FolderClass getSyncClass()
|
|
{
|
|
return getDisplayClass();
|
|
}
|
|
public FolderClass getPushClass()
|
|
{
|
|
return getSyncClass();
|
|
}
|
|
|
|
public void refresh(Preferences preferences) throws MessagingException
|
|
{
|
|
|
|
}
|
|
|
|
public String getStatus()
|
|
{
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) throws MessagingException
|
|
{
|
|
this.status = status;
|
|
}
|
|
|
|
|
|
}
|