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

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

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

import java.util.Optional;

public class CopyCommand extends BaseImapCommand {

  public CopyCommand(long startId, Optional stopId, String mailBoxName) {
    super(ImapCommandType.COPY, getRange(startId, stopId), mailBoxName);
  }

  private static String getRange(long startId, Optional stopId) {
    return String.format("%d:%d", startId, stopId.orElse(startId));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy