Uses of Class
com.hs.mail.imap.message.request.ImapRequest

Packages that use ImapRequest
com.hs.mail.imap.message   
com.hs.mail.imap.message.builder   
com.hs.mail.imap.message.builder.ext   
com.hs.mail.imap.message.request   
com.hs.mail.imap.message.request.ext   
com.hs.mail.imap.message.responder   
com.hs.mail.imap.message.responder.ext   
com.hs.mail.imap.processor   
com.hs.mail.imap.processor.ext   
com.hs.mail.imap.processor.fetch   
 

Uses of ImapRequest in com.hs.mail.imap.message
 

Methods in com.hs.mail.imap.message that return ImapRequest
static ImapRequest ImapRequestFactory.createImapRequest(ImapMessage message)
           
 

Uses of ImapRequest in com.hs.mail.imap.message.builder
 

Methods in com.hs.mail.imap.message.builder that return ImapRequest
 ImapRequest UnsubscribeRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest UidRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest SubscribeRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest StatusRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest SelectRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest RenameRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest NoopRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest LsubRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest LogoutRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest LoginRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest ListRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
abstract  ImapRequest ImapRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest ExpungeRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest ExamineRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest DeleteRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest CreateRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest CloseRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest CheckRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest CapabilityRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest AuthenticateRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest AppendRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest AbstractUidRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest StoreRequestBuilder.createRequest(String tag, String command, ImapMessage message, boolean useUID)
           
 ImapRequest SearchRequestBuilder.createRequest(String tag, String command, ImapMessage message, boolean useUID)
           
 ImapRequest FetchRequestBuilder.createRequest(String tag, String command, ImapMessage message, boolean useUID)
           
 ImapRequest CopyRequestBuilder.createRequest(String tag, String command, ImapMessage message, boolean useUID)
           
abstract  ImapRequest AbstractUidRequestBuilder.createRequest(String tag, String command, ImapMessage message, boolean useUID)
           
 

Uses of ImapRequest in com.hs.mail.imap.message.builder.ext
 

Methods in com.hs.mail.imap.message.builder.ext that return ImapRequest
 ImapRequest SetQuotaRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest NamespaceRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest GetQuotaRootRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest GetQuotaRequestBuilder.createRequest(String tag, String command, ImapMessage message)
           
 ImapRequest SortRequestBuilder.createRequest(String tag, String command, ImapMessage message, boolean useUID)
           
 

Uses of ImapRequest in com.hs.mail.imap.message.request
 

Subclasses of ImapRequest in com.hs.mail.imap.message.request
 class AbstractListRequest
           
 class AbstractMailboxRequest
           
 class AppendRequest
           
 class AuthenticateRequest
           
 class CapabilityRequest
           
 class CheckRequest
           
 class CloseRequest
           
 class CopyRequest
           
 class CreateRequest
           
 class DeleteRequest
           
 class ExamineRequest
           
 class ExpungeRequest
           
 class FetchRequest
           
 class ListRequest
           
 class LoginRequest
           
 class LogoutRequest
           
 class LsubRequest
           
 class NoopRequest
           
 class RenameRequest
           
 class SearchRequest
           
 class SelectRequest
           
 class StatusRequest
           
 class StoreRequest
           
 class SubscribeRequest
           
 class UnsubscribeRequest
           
 

Uses of ImapRequest in com.hs.mail.imap.message.request.ext
 

Subclasses of ImapRequest in com.hs.mail.imap.message.request.ext
 class GetQuotaRequest
           
 class GetQuotaRootRequest
           
 class NamespaceRequest
           
 class SetQuotaRequest
           
 class SortRequest
           
 

Uses of ImapRequest in com.hs.mail.imap.message.responder
 

Fields in com.hs.mail.imap.message.responder declared as ImapRequest
protected  ImapRequest AbstractImapResponder.request
           
 

Methods in com.hs.mail.imap.message.responder that return ImapRequest
 ImapRequest Responder.getRequest()
           
 ImapRequest AbstractImapResponder.getRequest()
           
 

Methods in com.hs.mail.imap.message.responder with parameters of type ImapRequest
 org.jboss.netty.channel.ChannelFuture Responder.okCompleted(ImapRequest request)
           
 org.jboss.netty.channel.ChannelFuture AbstractImapResponder.okCompleted(ImapRequest request)
           
 org.jboss.netty.channel.ChannelFuture Responder.okCompleted(ImapRequest request, String responseCode)
           
 org.jboss.netty.channel.ChannelFuture AbstractImapResponder.okCompleted(ImapRequest request, String responseCode)
           
 org.jboss.netty.channel.ChannelFuture Responder.taggedNo(ImapRequest request, String text)
           
 org.jboss.netty.channel.ChannelFuture AbstractImapResponder.taggedNo(ImapRequest request, String text)
           
 org.jboss.netty.channel.ChannelFuture Responder.taggedNo(ImapRequest request, String responseCode, String text)
           
 org.jboss.netty.channel.ChannelFuture AbstractImapResponder.taggedNo(ImapRequest request, String responseCode, String text)
           
 

Constructors in com.hs.mail.imap.message.responder with parameters of type ImapRequest
AbstractImapResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
DefaultImapResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
FetchResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
ListResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
SelectResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
StatusResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
StoreResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
 

Uses of ImapRequest in com.hs.mail.imap.message.responder.ext
 

Constructors in com.hs.mail.imap.message.responder.ext with parameters of type ImapRequest
QuotaResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
 

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

Methods in com.hs.mail.imap.processor with parameters of type ImapRequest
static ImapProcessor ImapProcessorFactory.createImapProcessor(ImapRequest request)
           
protected  Responder StoreProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  Responder StatusProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  Responder AbstractSelectProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  Responder AbstractListProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  Responder AbstractImapProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  void UnsubscribeProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void SubscribeProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void StoreProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void StatusProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void SearchProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void RenameProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void NoopProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void LogoutProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void LoginProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void ExpungeProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void DeleteProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void CreateProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void CopyProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void CloseProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void CheckProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void CapabilityProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void AuthenticateProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void AppendProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void AbstractSelectProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void AbstractListProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected abstract  void AbstractImapProcessor.doProcess(ImapSession session, ImapRequest request, Responder responder)
           
 void ImapProcessor.process(ImapSession session, ImapRequest message, org.jboss.netty.channel.Channel channel)
          Performs processing of the command.
 void AbstractImapProcessor.process(ImapSession session, ImapRequest request, org.jboss.netty.channel.Channel channel)
           
 

Uses of ImapRequest in com.hs.mail.imap.processor.ext
 

Methods in com.hs.mail.imap.processor.ext with parameters of type ImapRequest
protected  Responder AbstractQuotaProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  void SetQuotaProcessor.doProcess(ImapSession session, ImapRequest message, QuotaResponder responder)
           
protected  void GetQuotaRootProcessor.doProcess(ImapSession session, ImapRequest message, QuotaResponder responder)
           
protected  void GetQuotaProcessor.doProcess(ImapSession session, ImapRequest message, QuotaResponder responder)
           
protected abstract  void AbstractQuotaProcessor.doProcess(ImapSession session, ImapRequest request, QuotaResponder responder)
           
protected  void SortProcessor.doProcess(ImapSession session, ImapRequest request, Responder responder)
           
protected  void NamespaceProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
protected  void AbstractQuotaProcessor.doProcess(ImapSession session, ImapRequest request, Responder responder)
           
 

Uses of ImapRequest in com.hs.mail.imap.processor.fetch
 

Methods in com.hs.mail.imap.processor.fetch with parameters of type ImapRequest
protected  Responder FetchProcessor.createResponder(org.jboss.netty.channel.Channel channel, ImapRequest request)
           
protected  void FetchProcessor.doProcess(ImapSession session, ImapRequest message, Responder responder)
           
 



Copyright © 2011. All Rights Reserved.