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

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

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

import com.hubspot.imap.protocol.message.MessageFlag;

public class SilentStoreCommand extends StoreCommand {

  public SilentStoreCommand(
    StoreAction action,
    long startId,
    long stopId,
    MessageFlag... args
  ) {
    super(action, startId, stopId, args);
  }

  @Override
  protected String getAction() {
    return super.getAction() + ".SILENT";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy