Uses of Class
com.hs.mail.imap.mailbox.Mailbox

Packages that use Mailbox
com.hs.mail.imap.dao   
com.hs.mail.imap.mailbox   
com.hs.mail.imap.message.response   
com.hs.mail.imap.processor   
 

Uses of Mailbox in com.hs.mail.imap.dao
 

Methods in com.hs.mail.imap.dao that return Mailbox
 Mailbox MySqlMailboxDao.createMailbox(long ownerID, String mailboxName)
           
 Mailbox MailboxDao.createMailbox(long ownerID, String mailboxName)
          Create a mailbox with given name.
 Mailbox MySqlMailboxDao.getMailbox(long ownerID, String mailboxName)
           
 Mailbox MailboxDao.getMailbox(long ownerID, String mailboxName)
          Get the named mailbox.
 

Methods in com.hs.mail.imap.dao that return types with arguments of type Mailbox
 List<Mailbox> MySqlMailboxDao.getChildren(long userID, long ownerID, String mailboxName, boolean subscribed)
           
 List<Mailbox> MailboxDao.getChildren(long userID, long ownerID, String mailboxName, boolean subscribed)
          Get all child mailboxes of named mailbox.
 

Methods in com.hs.mail.imap.dao with parameters of type Mailbox
 void MySqlMailboxDao.renameMailbox(Mailbox source, String dest)
           
 void MailboxDao.renameMailbox(Mailbox source, String dest)
          Rename the mailbox.
 

Uses of Mailbox in com.hs.mail.imap.mailbox
 

Methods in com.hs.mail.imap.mailbox that return Mailbox
 Mailbox MailboxManager.createMailbox(long ownerID, String mailboxName)
          Creates a new mailbox.
 Mailbox DefaultMailboxManager.createMailbox(long ownerID, String mailboxName)
           
 Mailbox MailboxManager.getMailbox(long ownerID, String mailboxName)
          Returns user's Mailbox with a given path
 Mailbox DefaultMailboxManager.getMailbox(long ownerID, String mailboxName)
           
 Mailbox Mailbox.rename(String base, String dest)
           
 

Methods in com.hs.mail.imap.mailbox that return types with arguments of type Mailbox
 List<Mailbox> MailboxManager.getChildren(long userID, long ownerID, String mailboxName, boolean subscribed)
           
 List<Mailbox> DefaultMailboxManager.getChildren(long userID, long ownerID, String mailboxName, boolean subscribed)
           
 

Methods in com.hs.mail.imap.mailbox with parameters of type Mailbox
 boolean MailboxManager.hasChildren(Mailbox mailbox)
          Does the mailbox have inferior child mailboxes?
 boolean DefaultMailboxManager.hasChildren(Mailbox mailbox)
           
 boolean Mailbox.isChildOf(Mailbox mailbox)
          Check if this mailbox is subsequent child of the given mailbox.
 void MailboxManager.renameMailbox(Mailbox source, String targetName)
          Renames a mailbox.
 void DefaultMailboxManager.renameMailbox(Mailbox source, String targetName)
           
 

Uses of Mailbox in com.hs.mail.imap.message.response
 

Methods in com.hs.mail.imap.message.response that return Mailbox
 Mailbox ListResponse.getMailbox()
           
 

Methods in com.hs.mail.imap.message.response with parameters of type Mailbox
 StatusResponse StatusResponseBuilder.build(Status attr, Mailbox mailbox)
           
 SelectResponse SelectResponseBuilder.build(UidToMsnMapper map, Mailbox mailbox)
           
 

Constructors in com.hs.mail.imap.message.response with parameters of type Mailbox
ListResponse(Mailbox mailbox)
           
SelectResponse(Mailbox mailbox)
           
StatusResponse(Status status, Mailbox mailbox)
           
 

Uses of Mailbox in com.hs.mail.imap.processor
 

Methods in com.hs.mail.imap.processor that return Mailbox
protected  Mailbox LsubProcessor.getMailbox(long ownerID, String mailboxName)
           
protected  Mailbox ListProcessor.getMailbox(long ownerID, String mailboxName)
           
protected abstract  Mailbox AbstractListProcessor.getMailbox(long ownerID, String mailboxName)
           
 

Methods in com.hs.mail.imap.processor that return types with arguments of type Mailbox
protected  List<Mailbox> LsubProcessor.listMailbox(long userID, long ownerID, String mailboxName, MailboxQuery query)
           
protected  List<Mailbox> ListProcessor.listMailbox(long userID, long ownerID, String mailboxName, MailboxQuery query)
           
protected abstract  List<Mailbox> AbstractListProcessor.listMailbox(long userID, long ownerID, String mailboxName, MailboxQuery query)
           
 



Copyright © 2011. All Rights Reserved.