Newer
Older
public class Pair {
private String topic;
private String msg;
public Pair(String topic, String msg) {
this.topic = topic;
this.msg = msg;
}
public String getTopic() {
return topic;
}
public String getMsg() {
return msg;
}
public JSONObject toJsonObject() throws JSONException {
return new JSONObject(toString());
}
public String toString() {
return "{\"topic\":\""+topic+"\",\"msg\":"+msg+"}";
}