4849505152535455
client.addRolePermission( pathToAuthorize, roleToAuthorize, actionToAuthorize, permissionType); } catch (Exception e) { String msg = "Failed to add new role permission. " + e.getMessage(); log.error(msg, e); throw new UIException(msg, e); } }
5051525354555657
} catch (Exception e) { // having additional details will make the error message long String msg = e.getMessage(); log.error(e); // if we skip msg and put just e, error message contain the axis2 fault story throw new UIException(msg, e); } }
6768697071727374
customUIServiceClient.addTextContent(parentPath, resourceName, "epr", null, content); } catch (Exception e) { String msg = "Failed to get end point details. " + e.getMessage(); log.error(msg, e); throw new UIException(msg, e); } }
4748495051525354
client.addSymbolicLink(parentPath, name, targetPath); } catch (Exception e) { String msg = "Failed to add symbolic link "+ name + "to the parent collection " + parentPath + ". " + e.getMessage(); log.error(msg, e); throw new UIException(e); } }
6566676869707172
customUIServiceClient.updateTextContent(path, content); } catch (Exception e) { String msg = "Failed to get end point details. " + e.getMessage(); log.error(msg, e); throw new UIException(msg, e); } }
4647484950515253
client.changeRolePermissions(resourcePath, permissionInput); } catch (Exception e) { String msg = "Failed to change role permissions. " + e.getMessage(); log.error(msg, e); throw new UIException(msg, e); } }
4445464748495051
new ResourceServiceClient(cookie, config, request.getSession()); client.createVersion(resourcePath); } catch (Exception e) { String msg = "Failed to create version of the resource " + resourcePath + ". " + e.getMessage(); log.error(msg, e); throw new UIException(msg, e); } }
100101102103104105106107
} catch (Exception e) { // having additional details will make the error message long String msg = e.getMessage(); log.error(msg, e); // if we skip msg and put just e, error message contain the axis2 fault story throw new UIException(msg, e); } }
7980818283848586
return serviceClient.addService(filledService.toString()); } catch (Exception e) { String msg = "Failed to get service details. " + e.getMessage(); log.error(msg, e); throw new UIException(msg, e); } }