GetBeaconsRequest.java 680 Bytes
package com.arellomobile.android.push.request;

import org.json.JSONException;
import org.json.JSONObject;

public class GetBeaconsRequest
  extends PushRequest
{
  private JSONObject b;
  
  public String getMethod()
  {
    return "getApplicationBeacons";
  }
  
  public JSONObject getResponse()
  {
    return this.b;
  }
  
  public void parseResponse(JSONObject paramJSONObject)
    throws JSONException
  {
    this.b = paramJSONObject.getJSONObject("response");
  }
}


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