All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.imapnio.async.request.ExpungeCommand Maven / Gradle / Ivy

The newest version!
package com.yahoo.imapnio.async.request;

/**
 * This class defines imap expunge command request from client.
 */
public class ExpungeCommand extends AbstractNoArgsCommand {

    /** Command name. */
    private static final String EXPUNGE = "EXPUNGE";

    /**
     * Initializes the {@link ExpungeCommand}.
     */
    public ExpungeCommand() {
        super(EXPUNGE);
    }

    @Override
    public ImapRFCSupportedCommandType getCommandType() {
        return ImapRFCSupportedCommandType.EXPUNGE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy