use of cz.metacentrum.perun.webgui.model.PerunError in project perun by CESNET.
the class RemoveMember method removeMemberFromGroup.
/**
* Attempts to remove member from group
*
* @param groupId id of group
* @param memberId ID of member to be removed from group
*/
public void removeMemberFromGroup(final int groupId, final int memberId) {
this.memberId = memberId;
this.groupId = groupId;
// test arguments
if (!this.testRemoving()) {
return;
}
// prepare json object
JSONObject jsonQuery = prepareJSONObject();
// new events
JsonCallbackEvents newEvents = new JsonCallbackEvents() {
public void onError(PerunError error) {
session.getUiElements().setLogErrorText("Removing member: " + memberId + " from group: " + groupId + " failed.");
events.onError(error);
}
;
public void onFinished(JavaScriptObject jso) {
session.getUiElements().setLogSuccessText("Member: " + memberId + " removed from group: " + groupId);
events.onFinished(jso);
}
;
public void onLoadingStart() {
events.onLoadingStart();
}
;
};
// sending data
JsonPostClient jspc = new JsonPostClient(newEvents);
jspc.sendData(JSON_URL, jsonQuery);
}
use of cz.metacentrum.perun.webgui.model.PerunError in project perun by CESNET.
the class UpdateGroup method updateGroup.
/**
* Updates group details
* @param group Group with updated details
*/
public void updateGroup(Group group) {
if (group == null) {
Window.alert("Group can't be null");
return;
}
// GROUP OBJECT
JSONObject oldGroup = new JSONObject(group);
// RECONSTRUCT OBJECT
JSONObject newGroup = new JSONObject();
newGroup.put("id", oldGroup.get("id"));
// fake new group short name as name in order to update
newGroup.put("name", oldGroup.get("shortName"));
newGroup.put("description", oldGroup.get("description"));
newGroup.put("voId", oldGroup.get("voId"));
newGroup.put("parentGroupId", oldGroup.get("parentGroupId"));
newGroup.put("beanName", oldGroup.get("beanName"));
newGroup.put("createdAt", oldGroup.get("createdAt"));
newGroup.put("createdBy", oldGroup.get("createdBy"));
newGroup.put("modifiedAt", oldGroup.get("modifiedAt"));
newGroup.put("modifiedBy", oldGroup.get("modifiedBy"));
// whole JSON query
JSONObject jsonQuery = new JSONObject();
jsonQuery.put("group", newGroup);
// new events
JsonCallbackEvents newEvents = new JsonCallbackEvents() {
public void onError(PerunError error) {
session.getUiElements().setLogErrorText("Updating group failed.");
events.onError(error);
}
;
public void onFinished(JavaScriptObject jso) {
Group gp = jso.cast();
session.getUiElements().setLogSuccessText("Group " + gp.getName() + " successfully updated!");
events.onFinished(jso);
}
;
public void onLoadingStart() {
events.onLoadingStart();
}
;
};
// sending data
JsonPostClient jspc = new JsonPostClient(newEvents);
jspc.sendData(JSON_URL, jsonQuery);
}
use of cz.metacentrum.perun.webgui.model.PerunError in project perun by CESNET.
the class AddApplicationMail method addMail.
/**
* Adds new ApplicationMail
*
* @param appMail
* @param id
*/
public void addMail(ApplicationMail appMail, int id) {
this.appMail = appMail;
this.id = id;
// test arguments
if (!this.testCreating()) {
return;
}
// new events
JsonCallbackEvents newEvents = new JsonCallbackEvents() {
public void onError(PerunError error) {
session.getUiElements().setLogErrorText("Adding email failed.");
events.onError(error);
}
;
public void onFinished(JavaScriptObject jso) {
session.getUiElements().setLogSuccessText("Email added.");
events.onFinished(jso);
}
;
public void onLoadingStart() {
events.onLoadingStart();
}
;
};
// sending data
JsonPostClient jspc = new JsonPostClient(newEvents);
jspc.sendData(JSON_URL, prepareJSONObject());
}
use of cz.metacentrum.perun.webgui.model.PerunError in project perun by CESNET.
the class CopyForm method copyForm.
/**
* Send request to copy form
*/
public void copyForm() {
// test arguments
if (!this.testCreating()) {
return;
}
// new events
JsonCallbackEvents newEvents = new JsonCallbackEvents() {
public void onError(PerunError error) {
session.getUiElements().setLogErrorText("Copying form failed.");
events.onError(error);
}
;
public void onFinished(JavaScriptObject jso) {
session.getUiElements().setLogSuccessText("Form successfully copied.");
events.onFinished(jso);
}
;
public void onLoadingStart() {
events.onLoadingStart();
}
;
};
// sending data
JsonPostClient jspc = new JsonPostClient(newEvents);
jspc.sendData(JSON_URL, prepareJSONObject());
}
use of cz.metacentrum.perun.webgui.model.PerunError in project perun by CESNET.
the class CopyMails method copyMails.
/**
* Send request to copy form
*/
public void copyMails() {
// test arguments
if (!this.testCreating()) {
return;
}
// new events
JsonCallbackEvents newEvents = new JsonCallbackEvents() {
public void onError(PerunError error) {
session.getUiElements().setLogErrorText("Copying form failed.");
events.onError(error);
}
;
public void onFinished(JavaScriptObject jso) {
session.getUiElements().setLogSuccessText("Form successfully copied.");
events.onFinished(jso);
}
;
public void onLoadingStart() {
events.onLoadingStart();
}
;
};
// sending data
JsonPostClient jspc = new JsonPostClient(newEvents);
jspc.sendData(JSON_URL, prepareJSONObject());
}
Aggregations