Long orgId = organizationForm.getId();
if(organizationForm.getId() != null && organizationForm.getId() > 0) {
organizationService.editOrganization(organizationForm);
} else {
//Only create organization if user is System Admin
User user = userService.getUserFromSecurityContext();
if (!user.isSystemAdmin()) {
String[] codes = {"desktop.manager.organization.generic.error"};
ObjectError error = new ObjectError("organizationForm", codes, null, null);
bindingResult.addError(error);
return addOrganization(model);
}