Examples of ImapMessage


Examples of org.apache.james.imap.api.ImapMessage

        if (datetime == null) {
            datetime = new Date();
        }
        request.nextWordChar();

        final ImapMessage result = new AppendRequest(command, mailboxName, flags, datetime, request.consumeLiteral(true), tag);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

        super(ImapCommand.authenticatedStateCommand(ImapConstants.XLIST_COMMAND_NAME));
    }

    @Override
    protected ImapMessage createMessage(ImapCommand command, final String referenceName, final String mailboxPattern, final String tag) {
        final ImapMessage result = new XListRequest(command, referenceName, mailboxPattern, tag);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

     * org.apache.james.imap.decode.ImapRequestLineReader, java.lang.String,
     * org.apache.james.imap.api.process.ImapSession)
     */
    protected ImapMessage decode(ImapCommand command, ImapRequestLineReader request, String tag, ImapSession session) throws DecodingException {
        request.eol();
        final ImapMessage result = new LogoutRequest(command, tag);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

     * org.apache.james.imap.api.process.ImapSession)
     */
    protected ImapMessage decode(ImapCommand command, ImapRequestLineReader request, String tag, ImapSession session) throws DecodingException {
        final String mailboxName = request.mailbox();
        request.eol();
        final ImapMessage result = new SelectRequest(command, mailboxName, tag);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

     */
    protected ImapMessage decode(ImapCommand command, ImapRequestLineReader request, String tag, ImapSession session) throws DecodingException {
        String mailboxName = request.mailbox();
        request.eol();

        final ImapMessage result = new DeleteRequest(command, mailboxName, tag);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

        // TODO: replace abstract class with interface
        if (helperCommand == null || !(helperCommand instanceof AbstractUidCommandParser)) {
            throw new DecodingException(HumanReadableText.ILLEGAL_ARGUMENTS, "Invalid UID command: '" + commandName + "'");
        }
        final AbstractUidCommandParser uidEnabled = (AbstractUidCommandParser) helperCommand;
        final ImapMessage result = uidEnabled.decode(request, tag, true, session);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

           
            if (options == null) {
                options = new ArrayList<SearchResultOption>();
            }
           
            final ImapMessage result = new SearchRequest(command, new SearchOperation(finalKey, options), useUids, tag);
            return result;
        } catch (IllegalCharsetNameException e) {
            session.getLog().debug("Unable to decode request", e);
            return unsupportedCharset(tag, command);
        } catch (UnsupportedCharsetException e) {
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

                }
            }
        }

        request.eol();
        final ImapMessage result = new StoreRequest(command, idSet, silent, flags, useUids, tag, sign);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

     * org.apache.james.imap.decode.ImapRequestLineReader, java.lang.String,
     * org.apache.james.imap.api.process.ImapSession)
     */
    protected ImapMessage decode(ImapCommand command, ImapRequestLineReader request, String tag, ImapSession session) throws DecodingException {
        request.eol();
        final ImapMessage result = new CloseRequest(command, tag);
        return result;
    }
View Full Code Here

Examples of org.apache.james.imap.api.ImapMessage

     */
    protected ImapMessage decode(ImapCommand command, ImapRequestLineReader request, String tag, boolean useUids, ImapSession session) throws DecodingException {
        IdRange[] idSet = request.parseIdRange(session);
        String mailboxName = request.mailbox();
        request.eol();
        final ImapMessage result = new CopyRequest(command, idSet, mailboxName, useUids, tag);
        return result;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.