use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.
the class SetLogin method prepareJSONObject.
/**
* Prepares a JSON object
*
* @return JSONObject the whole query
*/
private JSONObject prepareJSONObject() {
// create whole JSON query
JSONObject jsonQuery = new JSONObject();
jsonQuery.put("user", new JSONNumber(userId));
jsonQuery.put("login", new JSONString(login));
jsonQuery.put("namespace", new JSONString(namespace));
return jsonQuery;
}
use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.
the class AddDestination method prepareJSONObject.
/**
* Prepares a JSON object
*
* @return JSONObject the whole query
*/
private JSONObject prepareJSONObject() {
// whole JSON query
JSONObject jsonQuery = new JSONObject();
jsonQuery.put("destination", new JSONString(destination));
jsonQuery.put("type", new JSONString(type));
jsonQuery.put("facility", new JSONNumber(facility.getId()));
JSONArray servs = new JSONArray();
for (int i = 0; i < services.size(); i++) {
// rebuild service object
JSONObject srv = new JSONObject();
srv.put("id", new JSONNumber(services.get(i).getId()));
srv.put("name", new JSONString(services.get(i).getName()));
servs.set(i, srv);
}
jsonQuery.put("services", servs);
return jsonQuery;
}
use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.
the class AddServiceToServicesPackage method prepareJSONObject.
/**
* Prepares a JSON object
*
* @return JSONObject the whole query
*/
private JSONObject prepareJSONObject() {
// whole JSON query
JSONObject jsonQuery = new JSONObject();
jsonQuery.put("service", new JSONNumber(serviceId));
jsonQuery.put("servicesPackage", new JSONNumber(packageId));
return jsonQuery;
}
use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.
the class DeleteAuthorship method prepareJSONObject.
/**
* Prepares a JSON object
* @return JSONObject the whole query
*/
private JSONObject prepareJSONObject() {
// category
JSONObject category = new JSONObject();
category.put("publicationId", new JSONNumber(publicationId));
category.put("userId", new JSONNumber(userId));
return category;
}
use of com.google.gwt.json.client.JSONNumber in project perun by CESNET.
the class DeleteCategory method prepareJSONObject.
/**
* Prepares a JSON object
* @return JSONObject the whole query
*/
private JSONObject prepareJSONObject() {
// category
JSONObject category = new JSONObject();
category.put("id", new JSONNumber(categoryId));
return category;
}
Aggregations