Package com.liferay.client.soap.portal.service.http

Examples of com.liferay.client.soap.portal.service.http.RoleServiceSoap


        profile.setAttributes(userAttributes);

        // user roles
        RoleServiceSoapServiceLocator rService = new RoleServiceSoapServiceLocator();
        RoleServiceSoap roleService = rService.getPortal_RoleService(_getURL("Portal_RoleService"));
        RoleSoap[] roles = roleService.getUserRoles(Integer.parseInt(userId));
        String[] roleNames = new String[roles.length];
        if (roles != null) {
          int i = 0;
          while (i<roles.length) {
              RoleSoap role=roles[i];
View Full Code Here

TOP

Related Classes of com.liferay.client.soap.portal.service.http.RoleServiceSoap

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.