package com.ikea.shared.campaign.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class ResponseHeaders
{

  @Expose
  @SerializedName("Cache-Control")
  private String cacheControl;

  @Expose
  @SerializedName("Connection")
  private String connection;

  @Expose
  @SerializedName("Content-Length")
  private String contentLength;

  @Expose
  @SerializedName("Content-Type")
  private String contentType;

  @Expose
  @SerializedName("Date")
  private String date;

  @Expose
  @SerializedName("Expires")
  private String expires;

  @Expose
  @SerializedName("Last-Modified")
  private String lastModified;

  @Expose
  @SerializedName("Pragma")
  private String pragma;

  @Expose
  @SerializedName("Server")
  private String server;

  @Expose
  @SerializedName("X-Backside-Transport")
  private String xBacksideTransport;

  @Expose
  @SerializedName("X-Client-IP")
  private String xClientIP;

  public String getCacheControl()
  {
    return this.cacheControl;
  }

  public String getConnection()
  {
    return this.connection;
  }

  public String getContentLength()
  {
    return this.contentLength;
  }

  public String getContentType()
  {
    return this.contentType;
  }

  public String getDate()
  {
    return this.date;
  }

  public String getExpires()
  {
    return this.expires;
  }

  public String getLastModified()
  {
    return this.lastModified;
  }

  public String getPragma()
  {
    return this.pragma;
  }

  public String getServer()
  {
    return this.server;
  }

  public String getXBacksideTransport()
  {
    return this.xBacksideTransport;
  }

  public String getXClientIP()
  {
    return this.xClientIP;
  }

  public void setConnection(String paramString)
  {
    this.connection = paramString;
  }

  public void setDate(String paramString)
  {
    this.date = paramString;
  }

  public void setServer(String paramString)
  {
    this.server = paramString;
  }

  public String toString()
  {
    return "ResponseHeaders [xBacksideTransport=" + this.xBacksideTransport + ", date=" + this.date + ", contentLength=" + this.contentLength + ", expires=" + this.expires + ", lastModified=" + this.lastModified + ", xClientIP=" + this.xClientIP + ", contentType=" + this.contentType + ", connection=" + this.connection + ", server=" + this.server + ", pragma=" + this.pragma + ", cacheControl=" + this.cacheControl + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.campaign.model.ResponseHeaders
 * JD-Core Version:    0.6.2
 */