package com.ikea.shared.notification;

public class WelcomeNotification
{
  private String currentStoreName;
  private String mOfflineMessage;
  private String nearStoreName;
  private String outOfStockItems;
  private WELCOME_NOTIFICATION_TYPE type;

  public WelcomeNotification(WELCOME_NOTIFICATION_TYPE paramWELCOME_NOTIFICATION_TYPE)
  {
    this.type = paramWELCOME_NOTIFICATION_TYPE;
  }

  public WelcomeNotification(WELCOME_NOTIFICATION_TYPE paramWELCOME_NOTIFICATION_TYPE, String paramString)
  {
    this.type = paramWELCOME_NOTIFICATION_TYPE;
    if (paramWELCOME_NOTIFICATION_TYPE.equals(WELCOME_NOTIFICATION_TYPE.AUTO_STORE_SELECT))
      this.currentStoreName = paramString;
    do
    {
      return;
      if (paramWELCOME_NOTIFICATION_TYPE.equals(WELCOME_NOTIFICATION_TYPE.CLOSER_STORE_NOTIFICATION))
      {
        this.nearStoreName = paramString;
        return;
      }
      if (paramWELCOME_NOTIFICATION_TYPE.equals(WELCOME_NOTIFICATION_TYPE.OUT_OF_STOCK))
      {
        this.outOfStockItems = paramString;
        return;
      }
    }
    while (!paramWELCOME_NOTIFICATION_TYPE.equals(WELCOME_NOTIFICATION_TYPE.OFFLINE_STATUS));
    this.mOfflineMessage = paramString;
  }

  public String getCurrentStoreName()
  {
    return this.currentStoreName;
  }

  public String getNearStoreName()
  {
    return this.nearStoreName;
  }

  public String getOfflineMessage()
  {
    return this.mOfflineMessage;
  }

  public String getOutOfStockItems()
  {
    return this.outOfStockItems;
  }

  public WELCOME_NOTIFICATION_TYPE getType()
  {
    return this.type;
  }

  public void setCurrentStoreName(String paramString)
  {
    this.currentStoreName = paramString;
  }

  public void setNearStoreName(String paramString)
  {
    this.nearStoreName = paramString;
  }

  public void setOfflineMessage(String paramString)
  {
    this.mOfflineMessage = paramString;
  }

  public void setOutOfStockItems(String paramString)
  {
    this.outOfStockItems = paramString;
  }

  public void setType(WELCOME_NOTIFICATION_TYPE paramWELCOME_NOTIFICATION_TYPE)
  {
    this.type = paramWELCOME_NOTIFICATION_TYPE;
  }

  public String toString()
  {
    return "WelcomeNotification [currentStoreName=" + this.currentStoreName + ", nearStoreName=" + this.nearStoreName + ", outOfStockItems=" + this.outOfStockItems + "]";
  }

  public static enum WELCOME_NOTIFICATION_TYPE
  {
    static
    {
      IN_STORE_WIFI = new WELCOME_NOTIFICATION_TYPE("IN_STORE_WIFI", 1);
      CLOSER_STORE_NOTIFICATION = new WELCOME_NOTIFICATION_TYPE("CLOSER_STORE_NOTIFICATION", 2);
      AUTO_STORE_SELECT = new WELCOME_NOTIFICATION_TYPE("AUTO_STORE_SELECT", 3);
      OFFLINE_STATUS = new WELCOME_NOTIFICATION_TYPE("OFFLINE_STATUS", 4);
      WELCOME_NOTIFICATION_TYPE[] arrayOfWELCOME_NOTIFICATION_TYPE = new WELCOME_NOTIFICATION_TYPE[5];
      arrayOfWELCOME_NOTIFICATION_TYPE[0] = OUT_OF_STOCK;
      arrayOfWELCOME_NOTIFICATION_TYPE[1] = IN_STORE_WIFI;
      arrayOfWELCOME_NOTIFICATION_TYPE[2] = CLOSER_STORE_NOTIFICATION;
      arrayOfWELCOME_NOTIFICATION_TYPE[3] = AUTO_STORE_SELECT;
      arrayOfWELCOME_NOTIFICATION_TYPE[4] = OFFLINE_STATUS;
    }
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.notification.WelcomeNotification
 * JD-Core Version:    0.6.2
 */