Package org.wso2.carbon.upgrade.ui.clients

Examples of org.wso2.carbon.upgrade.ui.clients.UpgradeServiceClient.cancelSubscription()


    public static void cancelSubscription(
            ServletConfig config, HttpSession session) throws UIException {

        try {
            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

TOP
Copyright © 2018 www.massapi.com. 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.