Package org.codehaus.groovy.grails.web.json

Examples of org.codehaus.groovy.grails.web.json.JSONObject


{
  public static Map<String, Object> doPost(String url, Map<String, Object> bodyMap, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = postJSON(url, MapUtil.mapToString(bodyMap), connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here


  public static Map<String, Object> doPut(String url, Map<String, Object> bodyMap, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = putJSON(url, MapUtil.mapToString(bodyMap), connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

  public static Map<String, Object> doGet(String url, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = getJSON(url, connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

  public static Map<String, Object> doDelete(String url, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = deleteJSON(url, connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

{
  public static Map<String, Object> doPost(String url, Map<String, Object> bodyMap, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = postJSON(url, MapUtil.mapToString(bodyMap), connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

   */
  public static Map<String, Object> doPost(String url, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = postNoJSON(url, connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

  public static Map<String, Object> doPut(String url, Map<String, Object> bodyMap, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = putJSON(url, MapUtil.mapToString(bodyMap), connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

  public static Map<String, Object> doGet(String url, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = getJSON(url, connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

  public static Map<String, Object> doDelete(String url, Integer connectionTimeout, Integer soTimeout)
  {
    Map<String, Object> resp = deleteJSON(url, connectionTimeout, soTimeout);
    if (!resp.containsKey("exception"))
      resp.put("response", MapUtil.jsonObjectToMap(new JSONObject((String) resp.get("response"))));
    return resp;
  }
View Full Code Here

    }
  }

  public static Map<String, Object> stringToMap(String jsonString)
  {
    return jsonObjectToMap(new JSONObject(jsonString));
  }
View Full Code Here

TOP

Related Classes of org.codehaus.groovy.grails.web.json.JSONObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.