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

com.google.sitebricks.mail.imap.ExpungeConfirmationExtractor Maven / Gradle / Ivy

The newest version!
package com.google.sitebricks.mail.imap;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.List;

/**
 * Just swallows the expunge confirmation.
 *
 * @author [email protected] (Dhanji R. Prasanna)
 */
class ExpungeConfirmationExtractor implements Extractor {
  private static final Logger log = LoggerFactory.getLogger(ExpungeConfirmationExtractor.class);

  @Override
  public Void extract(List messages) {
    for (String message : messages) {
      log.trace("Confirmation: {}", message);
    }
    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy