private KpiInstPeriod toKpiInstPeriod(SbiKpiInstPeriod sbiK) {
logger.debug("IN");
KpiInstPeriod toReturn = new KpiInstPeriod();
Integer id=sbiK.getKpiInstPeriodId();
Integer kpiInstId=null;
if(sbiK.getSbiKpiInstance()!=null){
kpiInstId=sbiK.getSbiKpiInstance().getIdKpiInstance();
}
Integer periodId=null;
if(sbiK.getSbiKpiPeriodicity()!=null){
periodId=sbiK.getSbiKpiPeriodicity().getIdKpiPeriodicity();
}
Boolean defaultValue=sbiK.isDefault_();
toReturn.setId(id);
toReturn.setKpiInstId(kpiInstId);
toReturn.setPeriodicityId(periodId);
toReturn.setDefaultValue(defaultValue);
logger.debug("OUT");
return toReturn;
}