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

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


        } catch (Exception e) {
            String msg = "Failed to copy resource " + oldResourcePath +
                    " to the path " + destinationPath + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(e);
        }
    }
View Full Code Here


        } catch (Exception e) {
            String msg = "Failed to update text content of the resource " +
                    resourcePath + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            client = new ResourceServiceClient(cookie, config, request.getSession());
        } catch (Exception e) {
            String msg = "Failed to initialize the resource service client " +
                    "to get resource tree data. " + e.getMessage();
            log.error(msg, e);
            throw new UIException(msg, e);
        }

        String textBoxId = request.getParameter("textBoxId");
        try {
            ResourceTreeData resourceTreeData = new ResourceTreeData();
            fillSubResourceTree(resourcePath, resourceTreeData, client,textBoxId, parentId,
                    request.getParameter("hideResources") != null);

            String displayHTML = "";
            displayHTML += resourceTreeData.getResourceTree();
            return displayHTML;

        } catch (RegistryException e) {

            String msg = "Failed to generate the resource tree for the resource " +
                    resourcePath + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            client.restoreVersion(versionPath);

        } catch (Exception e) {
            String msg = "Failed to restore the resource " + versionPath + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(msg, e);
        }

        return versionPath;
    }
View Full Code Here

            client.addCollection(parentPath, collectionName, mediaType, description);
        } catch (Exception e) {
            String msg = "Failed to add new collection " + collectionName +
                    " to the parent collection " + parentPath + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(msg, e);
        }

        return parentPath;
    }
View Full Code Here

           
        } catch (Exception e) {
            String msg = "Failed to rename resource " + oldResourcePath +
                    " to the name " + newName + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(e);
        }
    }
View Full Code Here

            String msg = fault.getReason() + " Failed to add tenant config. tenant-domain: " +
                    tenantInfoBean.getTenantDomain() + ", " +
                    "tenant-admin: " + tenantInfoBean.getAdmin() + ".";
            log.error(msg, e);
            // we are preserving the original message.
            throw new UIException(e.getMessage(), e);
        }
    }
View Full Code Here

            AxisFault fault = new AxisFault(e.getMessage());
            String msg = fault.getReason() + " Failed to reset password. tenant-domain: " + domain +
                    " admin: " + admin;
            log.error(msg, e);
            // we are preventing more details going ahead further to user.
            throw new UIException(e.getMessage(), e);
        }
    }
View Full Code Here

        } catch (Exception e) {
            AxisFault fault = new AxisFault(e.getMessage());
            String msg = fault.getReason() + " Failed to update password. tenant-domain: " + domain;
            log.error(msg, e);
            // we are preserving the original message.
            throw new UIException(e.getMessage(), e);
        }
    }
View Full Code Here

                    new TenantSelfRegistrationClient(config, session);
            return selfRegistrationClient.checkDomainAvailability(tenantDomain);
        } catch (Exception e) {
            String msg = "Failed to check the domain availability:" + tenantDomain + ".";
            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.