Package org.sumus.dwh.cube

Examples of org.sumus.dwh.cube.Cube


 
  private void createCube(DataStore dataStore, CubeDefinition definition){
    try {
      definition.addDimensions();
      definition.addMetrics();
      Cube cube = dataStore.createCube(definition.getName(), definition.getTimeScale());
      addDimensions(cube, dataStore, definition.getDimensionDefinitions());
      addMetrics(cube, dataStore, definition.getMetricDefinitions());
    }
    catch (Exception e) {
    }
View Full Code Here

TOP

Related Classes of org.sumus.dwh.cube.Cube

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.