Examples of IBIObjectDAO


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

        biobj.setFunctionalities(storeInFunctionalities);
        biobj.setStateCode(stateCode);
        biobj.setStateID(stateId);
        biobj.setVisible((visible? new Integer(1): new Integer(0)));
       
        IBIObjectDAO objectDAO = DAOFactory.getBIObjectDAO();
        objectDAO.setUserProfile(profile);
        objectDAO.insertBIObject(biobj, templ);
        // put data into response
        response.setAttribute(SpagoBIConstants.FUNCTIONALITIES_LIST, functionalities);
        response.setAttribute(DossierConstants.PUBLISHER_NAME, "publishPresentation");
        response.setAttribute("label", "");
        response.setAttribute("name", "");
View Full Code Here

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

      // get the map of configured parameter
      Map confPars = confDoc.getParameters();
      logger.debug("Configured static parameters: " + confPars);
     
      // load the biobject
      IBIObjectDAO biobjdao = DAOFactory.getBIObjectDAO();
      BIObject biobj = biobjdao.loadBIObjectByLabel(label);
      biobj.setBiObjectParameters(biobjdao.getBIObjectParameters(biobj));
      logger.debug("biobject loaded: " + biobj);
     
      DossierAnalyticalDriversManager adManager = new DossierAnalyticalDriversManager();
      adManager.fillEmptyAnalyticalDrivers(confPars, dossier, biobj);
      logger.debug("Parameters updated using dossier parameters: " + confPars);
View Full Code Here

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

    Integer objId = new Integer(objIdStr);
    BIObject obj = null;
    List params = null;
    List roleList = null;
    try{
      IBIObjectDAO biobjdao = DAOFactory.getBIObjectDAO();
      obj = biobjdao.loadBIObjectById(objId);
      Integer id = obj.getId();
      IBIObjectParameterDAO biobjpardao = DAOFactory.getBIObjectParameterDAO();
      params = biobjpardao.loadBIObjectParametersById(id);
      IRoleDAO roleDao = DAOFactory.getRoleDAO();
      roleList = roleDao.loadAllRoles();
View Full Code Here

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

      logicalName = "";
      //throw new EMFUserError(EMFErrorSeverity.ERROR, 103, "component_dossier_messages");
    }
    // load biobject using label
//    Integer id = new Integer(idobj);
    IBIObjectDAO biobjdao = DAOFactory.getBIObjectDAO();
    BIObject obj = biobjdao.loadBIObjectByLabel(label);
    IBIObjectParameterDAO biobjpardao = DAOFactory.getBIObjectParameterDAO();
    // gets parameters of the biobject
    List params = biobjpardao.loadBIObjectParametersById(obj.getId());
    Iterator iterParams = params.iterator();
    // get map of the param url name and value assigned
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.