Package org.infoglue.cms.applications.contenttool.actions.databeans

Examples of org.infoglue.cms.applications.contenttool.actions.databeans.AccessRightsUserRow


      {
          try
          {
          AccessRightUser accessRightUser = (AccessRightUser)accessRightUsersIterator.next();

          AccessRightsUserRow accessRightsUserRow = (AccessRightsUserRow)accessRightsUserRows.get(accessRightUser.getUserName());
          if(accessRightsUserRow == null)
          {
            InfoGluePrincipal infoGluePrincipal = UserControllerProxy.getController(db).getUser(accessRightUser.getUserName());
            if(infoGluePrincipal != null)
              {
                  AccessRightsUserRow newAccessRightsUserRow = new AccessRightsUserRow();
                  newAccessRightsUserRow.setUserName(infoGluePrincipal.getName());
                  newAccessRightsUserRow.getAccessRights().put(accessRightUser.getAccessRight().getInterceptionPoint().getId(), new Boolean(true));
                  accessRightsUserRows.put(infoGluePrincipal.getName(), newAccessRightsUserRow);
              }
          }
          else
          {
View Full Code Here

TOP

Related Classes of org.infoglue.cms.applications.contenttool.actions.databeans.AccessRightsUserRow

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.