Uses of Interface
com.icegreen.greenmail.store.MailFolder
-
Packages that use MailFolder Package Description com.icegreen.greenmail.imap com.icegreen.greenmail.pop3 com.icegreen.greenmail.store -
-
Uses of MailFolder in com.icegreen.greenmail.imap
Classes in com.icegreen.greenmail.imap that implement MailFolder Modifier and Type Class Description class
ImapSessionFolder
Methods in com.icegreen.greenmail.imap that return MailFolder Modifier and Type Method Description MailFolder
ImapHostManager. createMailbox(GreenMailUser user, java.lang.String mailboxName)
Returns a reference to a newly created Mailbox.MailFolder
ImapHostManagerImpl. createMailbox(GreenMailUser user, java.lang.String mailboxName)
MailFolder
ImapHostManager. getFolder(GreenMailUser user, java.lang.String mailboxName)
Returns a reference to an existing Mailbox.MailFolder
ImapHostManager. getFolder(GreenMailUser user, java.lang.String mailboxName, boolean mustExist)
Returns a reference to an existing Mailbox.MailFolder
ImapHostManagerImpl. getFolder(GreenMailUser user, java.lang.String mailboxName)
MailFolder
ImapHostManagerImpl. getFolder(GreenMailUser user, java.lang.String mailboxName, boolean mustExist)
MailFolder
ImapHostManager. getInbox(GreenMailUser user)
Returns a reference to the user's INBOX.MailFolder
ImapHostManagerImpl. getInbox(GreenMailUser user)
Methods in com.icegreen.greenmail.imap with parameters of type MailFolder Modifier and Type Method Description long
ImapSessionFolder. copyMessage(long uid, MailFolder toFolder)
void
ImapSession. setSelected(MailFolder folder, boolean readOnly)
Moves this session intoImapSessionState.SELECTED
state and sets the supplied mailbox to be the currently selected mailbox.void
ImapSessionImpl. setSelected(MailFolder folder, boolean readOnly)
Constructors in com.icegreen.greenmail.imap with parameters of type MailFolder Constructor Description ImapSessionFolder(MailFolder folder, ImapSession session, boolean readonly)
-
Uses of MailFolder in com.icegreen.greenmail.pop3
Methods in com.icegreen.greenmail.pop3 that return MailFolder Modifier and Type Method Description MailFolder
Pop3State. getFolder()
-
Uses of MailFolder in com.icegreen.greenmail.store
Methods in com.icegreen.greenmail.store that return MailFolder Modifier and Type Method Description MailFolder
InMemoryStore. createMailbox(MailFolder parent, java.lang.String mailboxName, boolean selectable)
MailFolder
Store. createMailbox(MailFolder parent, java.lang.String mailboxName, boolean selectable)
Creates a mailbox under the supplied parent with the given name.MailFolder
InMemoryStore. getMailbox(MailFolder parent, java.lang.String name)
MailFolder
InMemoryStore. getMailbox(java.lang.String absoluteMailboxName)
MailFolder
Store. getMailbox(MailFolder parent, java.lang.String mailboxName)
Looks up a child mailbox of the supplied parent with the name given.MailFolder
Store. getMailbox(java.lang.String qualifiedMailboxName)
Retrieves a mailbox based on a fully qualified name.MailFolder
InMemoryStore. setSelectable(MailFolder folder, boolean selectable)
MailFolder
Store. setSelectable(MailFolder folder, boolean selectable)
Tells the store to make the supplied mailbox selectable or not (able to store messages).Methods in com.icegreen.greenmail.store with parameters of type MailFolder Modifier and Type Method Description long
MailFolder. copyMessage(long uid, MailFolder toFolder)
MailFolder
InMemoryStore. createMailbox(MailFolder parent, java.lang.String mailboxName, boolean selectable)
MailFolder
Store. createMailbox(MailFolder parent, java.lang.String mailboxName, boolean selectable)
Creates a mailbox under the supplied parent with the given name.void
InMemoryStore. deleteMailbox(MailFolder folder)
void
Store. deleteMailbox(MailFolder folder)
Deletes the supplied mailbox from the store.java.util.Collection
InMemoryStore. getChildren(MailFolder parent)
java.util.Collection
Store. getChildren(MailFolder parent)
MailFolder
InMemoryStore. getMailbox(MailFolder parent, java.lang.String name)
MailFolder
Store. getMailbox(MailFolder parent, java.lang.String mailboxName)
Looks up a child mailbox of the supplied parent with the name given.void
InMemoryStore. renameMailbox(MailFolder existingFolder, java.lang.String newName)
void
Store. renameMailbox(MailFolder existingFolder, java.lang.String newName)
Renames the mailbox with the new name.MailFolder
InMemoryStore. setSelectable(MailFolder folder, boolean selectable)
MailFolder
Store. setSelectable(MailFolder folder, boolean selectable)
Tells the store to make the supplied mailbox selectable or not (able to store messages).
-