Examples of RoleServiceSoapServiceLocator


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

        logger.debug( "user.getLastName()="+ user.getLastName());

        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) {
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.