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

com.hubspot.imap.protocol.response.events.ByeEvent Maven / Gradle / Ivy

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

import com.google.common.base.MoreObjects;
import com.hubspot.imap.protocol.response.untagged.UntaggedResponse;

public class ByeEvent {

  private final UntaggedResponse response;

  public ByeEvent(UntaggedResponse response) {
    this.response = response;
  }

  public UntaggedResponse getResponse() {
    return response;
  }

  @Override
  public String toString() {
    return MoreObjects.toStringHelper(this).add("response", response).toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy