package com.splunk.mint;

public class NetSenderResponse
{
  private String data;
  private Exception exception;
  private int responseCode;
  private Boolean sentSuccessfully;
  private String serverResponse;
  private String url;

  protected NetSenderResponse(String paramString1, String paramString2)
  {
    this.url = paramString1;
    this.data = paramString2;
    this.sentSuccessfully = Boolean.valueOf(false);
  }

  public String getData()
  {
    return this.data;
  }

  public Exception getException()
  {
    return this.exception;
  }

  public int getResponseCode()
  {
    return this.responseCode;
  }

  public Boolean getSentSuccessfully()
  {
    return this.sentSuccessfully;
  }

  public String getServerResponse()
  {
    return this.serverResponse;
  }

  public String getUrl()
  {
    return this.url;
  }

  protected void setData(String paramString)
  {
    this.data = paramString;
  }

  protected void setException(Exception paramException)
  {
    this.exception = paramException;
  }

  protected void setResponseCode(int paramInt)
  {
    this.responseCode = paramInt;
  }

  protected void setSentSuccessfully(Boolean paramBoolean)
  {
    this.sentSuccessfully = paramBoolean;
  }

  protected void setServerResponse(String paramString)
  {
    this.serverResponse = paramString;
  }

  public String toString()
  {
    return "NetSenderResponse [exception=" + this.exception + ", sendSuccessfully=" + this.sentSuccessfully + ", serverResponse=" + this.serverResponse + ", data=" + this.data + ", url=" + this.url + ", responseCode=" + this.responseCode + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.splunk.mint.NetSenderResponse
 * JD-Core Version:    0.6.2
 */