ApplicationEventRequest.java 821 Bytes
package com.arellomobile.android.push.request;

import android.content.Context;
import java.util.Map;

public class ApplicationEventRequest
  extends PushRequest
{
  private String b;
  private Integer c;
  
  public ApplicationEventRequest(String paramString, Integer paramInteger)
  {
    this.b = paramString;
    this.c = paramInteger;
  }
  
  protected void buildParams(Context paramContext, Map<String, Object> paramMap)
  {
    paramMap.put("goal", this.b);
    if (this.c != null) {
      paramMap.put("count", this.c);
    }
  }
  
  public String getMethod()
  {
    return "applicationEvent";
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/arellomobile/android/push/request/ApplicationEventRequest.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */