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

com.hubspot.imap.protocol.command.fetch.items.BodyPeekFetchDataItem Maven / Gradle / Ivy

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

public class BodyPeekFetchDataItem extends BodyFetchDataItem {

  public BodyPeekFetchDataItem(String section) {
    super(section);
  }

  public BodyPeekFetchDataItem() {
    super();
  }

  @Override
  public String toString() {
    return "BODY.PEEK[" + section + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy