Package it.eng.spagobi.profiling.bean

Examples of it.eng.spagobi.profiling.bean.SbiUserAttributesId


                SbiUserAttributes sbiUserAttr = new SbiUserAttributes();
                sbiUserAttr.setAttributeValue(value);
               
                Integer attrID = attributesLookup.get(name);
               
                SbiUserAttributesId sbiUserAttrID = new SbiUserAttributesId();
                sbiUserAttrID.setId(idUser);//user ID
                sbiUserAttrID.setAttributeId(attrID.intValue());
                sbiUserAttr.setId(sbiUserAttrID);
               
                userDAO.updateSbiUserAttributes(sbiUserAttr);

              }
View Full Code Here


        Iterator attrsItToAdd = attributes.keySet().iterator();
        while(attrsItToAdd.hasNext()){
          Integer attrID = (Integer)attrsItToAdd.next();
          SbiUserAttributes attributeToAdd =  new SbiUserAttributes();
          attributeToAdd.setAttributeValue(attributes.get(attrID));
          SbiUserAttributesId attributeToAddId = new SbiUserAttributesId();
          attributeToAddId.setId(id);
          attributeToAddId.setAttributeId(attrID);
          attributeToAdd.setId(attributeToAddId);
          updateSbiCommonInfo4Insert(attributeToAdd);
          aSession.saveOrUpdate(attributeToAdd);
          aSession.flush();
         
View Full Code Here

TOP

Related Classes of it.eng.spagobi.profiling.bean.SbiUserAttributesId

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.