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

com.authy.api.JSONBody Maven / Gradle / Ivy

package com.authy.api;

import com.authy.AuthyUtil;
import org.json.JSONObject;

import java.util.HashMap;
import java.util.Map;

/**
 * @author hansospina
 *         

* Copyright © 2017 Twilio, Inc. All Rights Reserved. */ public class JSONBody implements Formattable { private JSONObject obj; public JSONBody(JSONObject obj) { this.obj = obj != null ? obj : new JSONObject(); } public String toXML() { return null; } public Map toMap() { HashMap map = new HashMap<>(); AuthyUtil.extract("", obj, map); return map; } public String toJSON() { return obj.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy