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

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

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

import java.util.List;

/**
 * @author [email protected] (Dhanji R. Prasanna)
 */
class SingleMessageBodyExtractor implements Extractor {
  private final MessageBodyExtractor extractor = new MessageBodyExtractor();

  @Override public Message extract(List messages) throws ExtractionException {
    List extract = extractor.extract(messages);

    return extract.isEmpty() ? null : extract.iterator().next();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy