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;
}
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;
}
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;
}
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;
}
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;
}
Aggregations