package com.splunk.mint;

public class DataSaverResponse
{
  private String data;
  private Exception exception;
  private String filepath;
  private Boolean savedSuccessfully;

  protected DataSaverResponse(String paramString1, String paramString2)
  {
    this.data = paramString1;
    this.filepath = paramString2;
  }

  public String getData()
  {
    return this.data;
  }

  public Exception getException()
  {
    return this.exception;
  }

  public String getFilepath()
  {
    return this.filepath;
  }

  public Boolean getSavedSuccessfully()
  {
    return this.savedSuccessfully;
  }

  protected void setException(Exception paramException)
  {
    this.exception = paramException;
  }

  protected void setSavedSuccessfully(Boolean paramBoolean)
  {
    this.savedSuccessfully = paramBoolean;
  }

  public String toString()
  {
    return "DataSaverResponse [data=" + this.data + ", filepath=" + this.filepath + ", exception=" + this.exception + ", savedSuccessfully=" + this.savedSuccessfully + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.splunk.mint.DataSaverResponse
 * JD-Core Version:    0.6.2
 */