Search in sources :

Example 31 with JSONNumber

use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.

the class BanExecServiceOnFacility method prepareJSONObject.

/**
	 * Prepares a JSON object
	 *
	 * @return JSONObject the whole query
	 */
private JSONObject prepareJSONObject() {
    JSONObject jsonQuery = new JSONObject();
    jsonQuery.put("facility", new JSONNumber(facilityId));
    jsonQuery.put("service", new JSONNumber(execServiceId));
    return jsonQuery;
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 32 with JSONNumber

use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.

the class AssignResourceTag method prepareJSONObject.

/**
	 * Prepares a JSON object
	 * @return JSONObject the whole query
	 */
private JSONObject prepareJSONObject() {
    JSONObject jsonQuery = new JSONObject();
    JSONObject oldTag = new JSONObject(resourceTag);
    JSONObject jsonTag = new JSONObject();
    jsonTag.put("id", oldTag.get("id"));
    jsonTag.put("tagName", oldTag.get("tagName"));
    jsonTag.put("voId", oldTag.get("voId"));
    jsonQuery.put("resourceTag", jsonTag);
    jsonQuery.put("resource", new JSONNumber(resourceId));
    return jsonQuery;
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 33 with JSONNumber

use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.

the class CreateResource method prepareJSONObject.

/**
	 * Prepares a JSON object
	 *
	 * @return JSONObject the whole query
	 */
private JSONObject prepareJSONObject() {
    JSONObject resource = new JSONObject();
    resource.put("id", new JSONNumber(0));
    resource.put("name", new JSONString(resourceName));
    resource.put("description", new JSONString(resourceDescription));
    JSONObject jsonQuery = new JSONObject();
    jsonQuery.put("resource", resource);
    jsonQuery.put("facility", new JSONNumber(facilityId));
    jsonQuery.put("vo", new JSONNumber(voId));
    return jsonQuery;
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONNumber(com.google.gwt.json.client.JSONNumber) JSONString(com.google.gwt.json.client.JSONString)

Example 34 with JSONNumber

use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.

the class CreateResourceTag method prepareJSONObject.

/**
	 * Prepares a JSON object
	 * @return JSONObject the whole query
	 */
private JSONObject prepareJSONObject() {
    JSONObject jsonQuery = new JSONObject();
    JSONObject jsonTag = new JSONObject();
    jsonTag.put("id", null);
    jsonTag.put("tagName", new JSONString(tagName));
    jsonTag.put("voId", new JSONNumber(voId));
    jsonQuery.put("resourceTag", jsonTag);
    jsonQuery.put("vo", new JSONNumber(voId));
    return jsonQuery;
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONNumber(com.google.gwt.json.client.JSONNumber) JSONString(com.google.gwt.json.client.JSONString)

Example 35 with JSONNumber

use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.

the class DeleteResource method prepareJSONObject.

/**
	 * Prepares a JSON object
	 * @return JSONObject the whole query
	 */
private JSONObject prepareJSONObject() {
    JSONObject jsonQuery = new JSONObject();
    jsonQuery.put("resource", new JSONNumber(resourceId));
    return jsonQuery;
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONNumber(com.google.gwt.json.client.JSONNumber)

Aggregations

JSONNumber (com.google.gwt.json.client.JSONNumber)164 JSONObject (com.google.gwt.json.client.JSONObject)109 JSONString (com.google.gwt.json.client.JSONString)72 JSONArray (com.google.gwt.json.client.JSONArray)69 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)19 JsonCallbackEvents (cz.metacentrum.perun.webgui.json.JsonCallbackEvents)18 JsonPostClient (cz.metacentrum.perun.webgui.json.JsonPostClient)18 PerunError (cz.metacentrum.perun.webgui.model.PerunError)17 HashMap (java.util.HashMap)4 Map (java.util.Map)4 JSONValue (com.google.gwt.json.client.JSONValue)3 ArrayList (java.util.ArrayList)3 Token (org.rstudio.core.client.Invalidation.Token)3 ServerError (org.rstudio.studio.client.server.ServerError)3 Breakpoint (org.rstudio.studio.client.common.debugging.model.Breakpoint)2 DiffResult (org.rstudio.studio.client.common.vcs.DiffResult)2 StatusAndPath (org.rstudio.studio.client.common.vcs.StatusAndPath)2 Point (org.rstudio.studio.client.workbench.views.plots.model.Point)2 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)1 ClickHandler (com.google.gwt.event.dom.client.ClickHandler)1