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

com.hubspot.imap.protocol.command.OpenCommand Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.hubspot.imap.protocol.command;

import com.hubspot.imap.client.FolderOpenMode;
import com.hubspot.imap.utils.GmailUtils;

public class OpenCommand extends BaseImapCommand {

  public OpenCommand(String name, FolderOpenMode openMode) {
    super(
      openMode == FolderOpenMode.READ ? ImapCommandType.EXAMINE : ImapCommandType.SELECT,
      GmailUtils.quote(name)
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy