Package org.apache.james.imap.decode

Examples of org.apache.james.imap.decode.ImapDecoder


public class DefaultImapDecoderFactory implements ImapDecoderFactory {

    public static final ImapDecoder createDecoder() {
        final UnpooledStatusResponseFactory unpooledStatusResponseFactory = new UnpooledStatusResponseFactory();
        final ImapCommandParserFactory imapCommands = new ImapParserFactory(unpooledStatusResponseFactory);
        final ImapDecoder result = new DefaultImapDecoder(unpooledStatusResponseFactory, imapCommands);
        return result;
    }
View Full Code Here

TOP

Related Classes of org.apache.james.imap.decode.ImapDecoder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.