Package org.apache.stratos.account.mgt.ui.clients

Examples of org.apache.stratos.account.mgt.ui.clients.AccountMgtClient


        try {
            firstname = request.getParameter("firstname");
            lastname = request.getParameter("lastname");
            accountInfoBean.setFirstname(firstname);
            accountInfoBean.setLastname(lastname);
            AccountMgtClient client = new AccountMgtClient(config, session);
            return client.updateFullname(accountInfoBean);
        } catch (Exception e) {
            String msg = "Failed to update tenant with firstname: " + firstname;
            log.error(msg, e);
            throw new Exception(msg, e);
        }
View Full Code Here

TOP

Related Classes of org.apache.stratos.account.mgt.ui.clients.AccountMgtClient

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.