com.yahoo.imapnio.async.request.CheckCommand 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 check command request from client.
*/
public class CheckCommand extends AbstractNoArgsCommand {
/** Command name. */
private static final String CHECK = "CHECK";
/**
* Initializes the {@link CheckCommand}.
*/
public CheckCommand() {
super(CHECK);
}
@Override
public ImapRFCSupportedCommandType getCommandType() {
return ImapRFCSupportedCommandType.CHECK;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy