package com.metaio.cloud.plugin.util;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

public class JunaioChannel
  implements Serializable
{
  private static final long serialVersionUID = -179957696290829845L;
  private int channelID;
  private Map<String, String> filters;

  public JunaioChannel()
  {
    this.channelID = -1;
    this.filters = new HashMap();
  }

  public JunaioChannel(int paramInt)
  {
    this.channelID = paramInt;
  }

  public void addFilter(String paramString1, String paramString2)
  {
    this.filters.put(paramString1, paramString2);
  }

  public int getChannelID()
  {
    return this.channelID;
  }

  public Map<String, String> getFilters()
  {
    return this.filters;
  }

  public void setChannelID(int paramInt)
  {
    this.channelID = paramInt;
  }

  public String toString()
  {
    return "channelID " + this.channelID + " filters: " + this.filters.toString();
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.metaio.cloud.plugin.util.JunaioChannel
 * JD-Core Version:    0.6.2
 */