com.yahoo.imapnio.async.request.CompressCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imapnio.core Show documentation
Show all versions of imapnio.core Show documentation
imapnio component ${project.name}
The newest version!
package com.yahoo.imapnio.async.request;
/**
* This class defines imap Compress request from client.
*
* @see "RFC 4978"
*/
public final class CompressCommand extends AbstractNoArgsCommand {
/** Command name. */
private static final String COMPRESS_DEFLATE = "COMPRESS DEFLATE";
/**
* Initializes the {@link CompressCommand}.
*
* @see "RFC 4978"
*/
public CompressCommand() {
super(COMPRESS_DEFLATE);
}
@Override
public ImapRFCSupportedCommandType getCommandType() {
return ImapRFCSupportedCommandType.COMPRESS;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy