All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.belerweb.social.bean.JsonBean Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.belerweb.social.bean;

import org.json.JSONObject;

public abstract class JsonBean {

  private JSONObject jsonObject;

  protected JsonBean() {}

  protected JsonBean(JSONObject jsonObject) {
    this.jsonObject = jsonObject;
  }

  public JSONObject getJsonObject() {
    return jsonObject;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy