Package org.wso2.carbon.registry.common.ui

Examples of org.wso2.carbon.registry.common.ui.UIException


            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);
        }
    }
View Full Code Here


        } 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);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

                    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);
        }
    }
View Full Code Here

        } 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);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

TOP

Related Classes of org.wso2.carbon.registry.common.ui.UIException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.