Package it.eng.spagobi.analiticalmodel.functionalitytree.bo

Examples of it.eng.spagobi.analiticalmodel.functionalitytree.bo.UserFunctionality


        else logger.debug("Rolename ( " + rolename +") doesn't exist in EXT_ROLES");
      }
      Role[] rolesArr = new Role[roles.size()];
      rolesArr = (Role[]) roles.toArray(rolesArr);

      UserFunctionality userFunct = new UserFunctionality();
      userFunct.setCode("ufr_" + userId);
      userFunct.setDescription("User Functionality Root");
      userFunct.setName(userId);
      userFunct.setPath("/" + userId);
      //userFunct.setExecRoles(rolesArr);
      ILowFunctionalityDAO functdao = DAOFactory.getLowFunctionalityDAO();
      functdao.insertUserFunctionality(userFunct);
  } catch (Exception e) {
     logger.error("Error while creating user functionality root", e);
View Full Code Here

TOP

Related Classes of it.eng.spagobi.analiticalmodel.functionalitytree.bo.UserFunctionality

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.