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

com.hubspot.imap.protocol.command.search.keys.UidSearchKey Maven / Gradle / Ivy

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

import com.hubspot.imap.protocol.command.search.keys.SearchKeyType.StandardSearchKeyTypes;

/**
 * UID(RFC3501): Messages with unique identifiers corresponding to the specified unique identifier set.  Sequence set ranges are permitted.
 */
public class UidSearchKey extends BaseSearchKey {

  public UidSearchKey(String... args) {
    super(StandardSearchKeyTypes.UID, args);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy