Package it.eng.spagobi.behaviouralmodel.analyticaldriver.dao

Examples of it.eng.spagobi.behaviouralmodel.analyticaldriver.dao.IParameterDAO


      // get the id of the parent parameter
      Integer objParFatherId = objParuse.getObjParFatherId();
          // find the bi parameter for the correlation (biparameter father)
      BIObjectParameter objParFather = DAOFactory.getBIObjectParameterDAO().loadForDetailByObjParId(objParFatherId);
          // get the general parameter associated to the bi parameter father
          IParameterDAO parameterDAO = DAOFactory.getParameterDAO();
          Parameter parameter = parameterDAO.loadForDetailByParameterID(objParFather.getParID());
          // get the type of the general parameter
          String valueTypeFilter = parameter.getType();
      String valueFilter = "";
      // get the values of the father parameter
//      String valuesDecoded = (String) request.getAttribute(objParFather.getParameterUrlName());
View Full Code Here


  ListIFace list = new GenericList();



  // recover lov object
  IParameterDAO pardao = DAOFactory.getParameterDAO();
  Parameter par = pardao.loadForExecutionByParameterIDandRoleName(parId, roleName);
  ModalitiesValue modVal = par.getModalityValue();

  // get the lov provider
  String lovProvider = modVal.getLovProvider();
View Full Code Here

TOP

Related Classes of it.eng.spagobi.behaviouralmodel.analyticaldriver.dao.IParameterDAO

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.