Package com.liferay.client.soap.portal.model

Examples of com.liferay.client.soap.portal.model.RoleSoap


        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];
            logger.debug("ruolo.getName()="+ role.getName());
            logger.debug("ruolo.getDescription()="+ role.getDescription());
            logger.debug("ruolo.getRoleId()=" + role.getRoleId());
            roleNames[i++] = role.getName();
          }
        }
        else {
          logger.warn("THE LIST OF ROLES IS EMPTY, CHECK THE PROFILING CONFIGURATION...");
        }
View Full Code Here

TOP

Related Classes of com.liferay.client.soap.portal.model.RoleSoap

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.