Examples of GoalKpi


Examples of it.eng.spagobi.kpi.goal.metadata.bo.GoalKpi

    logger.debug("OUT: returning " + toReturn);
    return toReturn;
  }
 
  public GoalKpi toGoalKpi(SbiGoalKpi hibernateGoalKpi) {
    GoalKpi g = new GoalKpi(hibernateGoalKpi.getKpiInstanceId(), hibernateGoalKpi.getWeight1(), hibernateGoalKpi.getWeight2(), hibernateGoalKpi.getThreshold1(), hibernateGoalKpi.getThreshold2(), hibernateGoalKpi.getThreshold1sign(), hibernateGoalKpi.getThreshold2sign(), hibernateGoalKpi.getGoalKpiId(),  hibernateGoalKpi.getSbiGoalHierarchy().getGoalHierarchyId());
    return g;
  }
View Full Code Here

Examples of it.eng.spagobi.kpi.goal.metadata.bo.GoalKpi

      threshold2 = JSONGoal.optDouble(THRESHOLD2);
    }
    Integer sign1 = JSONGoal.optInt(SIGN1);
    Integer sign2 = JSONGoal.optInt(SIGN2);
    Integer id =  JSONGoal.optInt(ID);
    GoalKpi gk = new GoalKpi(modelInstance, weight1, weight2, threshold1, threshold2, sign1, sign2, id, goalNodeId);
    return gk;
  }
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.