Uses of Interface
com.icegreen.greenmail.store.MailFolder
Packages that use MailFolder
Package
Description
-
Uses of MailFolder in com.icegreen.greenmail.imap
Classes in com.icegreen.greenmail.imap that implement MailFolderMethods in com.icegreen.greenmail.imap that return MailFolderModifier and TypeMethodDescriptionImapHostManager.createMailbox(GreenMailUser user, String mailboxName) Returns a reference to a newly created Mailbox.ImapHostManagerImpl.createMailbox(GreenMailUser user, String mailboxName) ImapHostManager.getFolder(GreenMailUser user, String mailboxName) Returns a reference to an existing Mailbox.ImapHostManager.getFolder(GreenMailUser user, String mailboxName, boolean mustExist) Returns a reference to an existing Mailbox.ImapHostManagerImpl.getFolder(GreenMailUser user, String mailboxName) ImapHostManagerImpl.getFolder(GreenMailUser user, String mailboxName, boolean mustExist) ImapHostManager.getInbox(GreenMailUser user) Returns a reference to the user's INBOX.ImapHostManagerImpl.getInbox(GreenMailUser user) Methods in com.icegreen.greenmail.imap that return types with arguments of type MailFolderModifier and TypeMethodDescriptionImapHostManager.listMailboxes(GreenMailUser user, String mailboxPattern) Returns an collection of mailboxes on this host.ImapHostManagerImpl.listMailboxes(GreenMailUser user, String mailboxPattern) ImapHostManager.listSubscribedMailboxes(GreenMailUser user, String mailboxPattern) Returns an collection of mailboxes on this host.ImapHostManagerImpl.listSubscribedMailboxes(GreenMailUser user, String mailboxPattern) Methods in com.icegreen.greenmail.imap with parameters of type MailFolderModifier and TypeMethodDescriptionlongImapSessionFolder.copyMessage(long uid, MailFolder toFolder) longImapSessionFolder.moveMessage(long uid, MailFolder toFolder) voidImapSession.setSelected(MailFolder folder, boolean readOnly) Moves this session intoImapSessionState.SELECTEDstate and sets the supplied mailbox to be the currently selected mailbox.voidImapSessionImpl.setSelected(MailFolder folder, boolean readOnly) Constructors in com.icegreen.greenmail.imap with parameters of type MailFolderModifierConstructorDescriptionImapSessionFolder(MailFolder folder, ImapSession session, boolean readonly) -
Uses of MailFolder in com.icegreen.greenmail.pop3
Methods in com.icegreen.greenmail.pop3 that return MailFolder -
Uses of MailFolder in com.icegreen.greenmail.store
Methods in com.icegreen.greenmail.store that return MailFolderModifier and TypeMethodDescriptionInMemoryStore.createMailbox(MailFolder parent, String mailboxName, boolean selectable) Store.createMailbox(MailFolder parent, String mailboxName, boolean selectable) Creates a mailbox under the supplied parent with the given name.InMemoryStore.getMailbox(MailFolder parent, String name) InMemoryStore.getMailbox(String absoluteMailboxName) Store.getMailbox(MailFolder parent, String mailboxName) Looks up a child mailbox of the supplied parent with the name given.Store.getMailbox(String qualifiedMailboxName) Retrieves a mailbox based on a fully qualified name.InMemoryStore.setSelectable(MailFolder folder, boolean selectable) 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 that return types with arguments of type MailFolderModifier and TypeMethodDescriptionInMemoryStore.getChildren(MailFolder parent) Store.getChildren(MailFolder parent) InMemoryStore.listMailboxes(String searchPattern) Store.listMailboxes(String searchPattern) Lists all the mailboxes in the store which have a name matching the supplied search pattern.Methods in com.icegreen.greenmail.store with parameters of type MailFolderModifier and TypeMethodDescriptionlongMailFolder.copyMessage(long uid, MailFolder toFolder) InMemoryStore.createMailbox(MailFolder parent, String mailboxName, boolean selectable) Store.createMailbox(MailFolder parent, String mailboxName, boolean selectable) Creates a mailbox under the supplied parent with the given name.voidInMemoryStore.deleteMailbox(MailFolder folder) voidStore.deleteMailbox(MailFolder folder) Deletes the supplied mailbox from the store.InMemoryStore.getChildren(MailFolder parent) Store.getChildren(MailFolder parent) InMemoryStore.getMailbox(MailFolder parent, String name) Store.getMailbox(MailFolder parent, String mailboxName) Looks up a child mailbox of the supplied parent with the name given.longMailFolder.moveMessage(long uid, MailFolder toFolder) voidInMemoryStore.renameMailbox(MailFolder existingFolder, String newName) voidStore.renameMailbox(MailFolder existingFolder, String newName) Renames the mailbox with the new name.InMemoryStore.setSelectable(MailFolder folder, boolean selectable) Store.setSelectable(MailFolder folder, boolean selectable) Tells the store to make the supplied mailbox selectable or not (able to store messages).