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

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

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

/**
 * This class defines imap capability command request from client.
 */
public class CapaCommand extends AbstractNoArgsCommand {

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

    /**
     * Initializes a {@link CapaCommand}.
     */
    public CapaCommand() {
        super(CAPABILITY);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy