Package it.eng.spagobi.analiticalmodel.document.dao

Examples of it.eng.spagobi.analiticalmodel.document.dao.BIObjectDAOHibImpl


        importObjParUse(exportedObj.getBiobjId());

        commit();

        //updates lucene index
          BIObjectDAOHibImpl daoObj = (BIObjectDAOHibImpl)DAOFactory.getBIObjectDAO();
          BIObject biObj = daoObj.toBIObject(obj);
        indexer.addBiobjToIndex(biObj);

        // TODO controllare che fa questo e se serve!!!
        //updateSubObject(obj, exportedObj.getBiobjId());
      }
View Full Code Here


    Set d = hibDistributionList.getSbiDistributionListsObjectses();
    Iterator it = d.iterator();
    while(it.hasNext()){
      SbiDistributionListsObjects dlo =(SbiDistributionListsObjects) it.next();
      SbiObjects so = dlo.getSbiObjects();
      BIObjectDAOHibImpl objDAO=null;
      try {
        objDAO = (BIObjectDAOHibImpl)DAOFactory.getBIObjectDAO();
        BIObject obj = objDAO.toBIObject(so);
        documents.add(obj);
      } catch (EMFUserError e) {

      }
View Full Code Here

    lowFunct.setCreateRoles(createRoles);

    List biObjects = new ArrayList();
    if (recoverBIObjects) {

      BIObjectDAOHibImpl objDAO = null;
      try {
        objDAO = (BIObjectDAOHibImpl) DAOFactory.getBIObjectDAO();

        Set hibObjFuncs = hibFunct.getSbiObjFuncs();
        for (Iterator it = hibObjFuncs.iterator(); it.hasNext();) {
          SbiObjFunc hibObjFunc = (SbiObjFunc) it.next();
          BIObject object = objDAO.toBIObject(hibObjFunc.getId()
              .getSbiObjects());
          biObjects.add(object);
        }
      } catch (EMFUserError e) {
        logger.error("Error", e);
View Full Code Here

TOP

Related Classes of it.eng.spagobi.analiticalmodel.document.dao.BIObjectDAOHibImpl

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.