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

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


            return selfRegistrationClient.validateOrSuggestDomain(tempDomainToRegister, successKey);
        } catch (Exception e) {
            String msg = "Failed to validate or suggest a domain related to :" +
                    tempDomainToRegister + ".";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here


                    new TenantSelfRegistrationClient(config, session);
            return selfRegistrationClient.generateRandomCaptcha();
        } catch (Exception e) {
            String msg = "Error in generating the captcha image.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            UpgradeServiceClient serviceClient = new UpgradeServiceClient(config, session);
            return serviceClient.getPackageInfo();
        } catch (Exception e) {
            String msg = "Failed to get the package information.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            UpgradeServiceClient serviceClient = new UpgradeServiceClient(config, session);
            return serviceClient.getCurrentSubscription();
        } catch (Exception e) {
            String msg = "Failed to get the current subscription.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            UpgradeServiceClient serviceClient = new UpgradeServiceClient(config, session);
            serviceClient.updateSubscription(packageName, duration);
        } catch (Exception e) {
            String msg = "Failed to update the subscription.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            UpgradeServiceClient serviceClient = new UpgradeServiceClient(config, session);
            serviceClient.cancelSubscription();
        } catch (Exception e) {
            String msg = "Failed to cancel the current subscription.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            BillingServiceClient serviceClient = new BillingServiceClient(config, session);
            return serviceClient.getAvailableBillingPeriods();
        } catch (java.lang.Exception e) {
            String msg = "Failed to get available billing periods.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            BillingServiceClient serviceClient = new BillingServiceClient(config, session);
            return serviceClient.getPastInvoice(invoiceId);
        } catch (java.lang.Exception e) {
            String msg = "Failed to get past invoice for invoice id:" + invoiceId + ".";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            BillingServiceClient serviceClient = new BillingServiceClient(config, session);
            return serviceClient.getCurrentInvoice();
        } catch (java.lang.Exception e) {
            String msg = "Failed to get the current invoice.";
            log.error(msg, e);
            throw new UIException(msg, e);
        }
    }
View Full Code Here

            BillingServiceClient serviceClient = new BillingServiceClient(config, session);
            return serviceClient.addPayment(payment, amount);
        }catch (Exception exp){
            String msg = "Failed to add the payment record " + payment.getDescription();
            log.error(msg, exp);
            throw new UIException(msg, exp);
        }
    }
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.