Package com.tonbeller.jpivot.mondrian

Examples of com.tonbeller.jpivot.mondrian.ScriptableMondrianDrillThrough


      chart, table, olapModel);
    // stores current analysis information on session
    session.setAttribute("analysisBean", analysis);
   
    // retrieves Mondrian connection
    ScriptableMondrianDrillThrough smdt = (ScriptableMondrianDrillThrough) olapModel.getExtension("drillThrough");
    Connection mondrianConnection = smdt.getConnection();
    // retrieves CacheControl object
    CacheControl cacheControl = mondrianConnection.getCacheControl(null);
    // retrieves the MDX query
    MdxQuery mdxQuery = (MdxQuery) olapModel.getExtension("mdxQuery");
    Query mondrianQuery = mondrianConnection.parseQuery(mdxQuery.getMdxQuery());
View Full Code Here


    List dimensionRules = getDimensionRules();
    if(dimensionRules.isEmpty()) {
      return;
    }
   
    ScriptableMondrianDrillThrough smdt = (ScriptableMondrianDrillThrough) olapModel.getExtension("drillThrough");
    Connection monConnection = smdt.getConnection();
    // get the connection role, cube and schema reader
    RoleImpl connRole = (RoleImpl) monConnection.getRole();
    //connRole.makeMutableClone();
      logger.debug("DataSecurityManager::setMondrianRole:connection role retrived: " + connRole);
      Query monQuery = monConnection.parseQuery(query);
View Full Code Here

TOP

Related Classes of com.tonbeller.jpivot.mondrian.ScriptableMondrianDrillThrough

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.