blob: c4a10b7086766e5d43b1e0937cf71dab0e8e8dd9 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.portfolio.creditscorecard.data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.fineract.portfolio.creditscorecard.domain.FeatureCriteriaScore;
import org.apache.fineract.portfolio.creditscorecard.domain.RuleBasedScorecard;
public final class RuleBasedScorecardData implements Serializable {
private final Long id;
private final Collection<FeatureCriteriaScoreData> criteriaScores;
private final BigDecimal overallScore;
private final String overallColor;
private final Collection<Map<String, Object>> scoringModels;
private RuleBasedScorecardData(final Long id, final Collection<FeatureCriteriaScoreData> criteriaScores, final BigDecimal overallScore,
final String overallColor, final Collection<Map<String, Object>> scoringModels) {
this.id = id;
this.criteriaScores = criteriaScores;
this.overallScore = overallScore;
this.overallColor = overallColor;
this.scoringModels = scoringModels;
}
public static RuleBasedScorecardData instance(RuleBasedScorecard rbs) {
final List<FeatureCriteriaScore> ctScores = rbs.getCriteriaScores();
final List<FeatureCriteriaScoreData> ctScoresData = ctScores.stream().map(FeatureCriteriaScoreData::instance)
.collect(Collectors.toList());
final Collection<Map<String, Object>> scoringModels = null;
return new RuleBasedScorecardData(rbs.getId(), ctScoresData, rbs.getOverallScore(), rbs.getOverallColor(), scoringModels);
}
public static RuleBasedScorecardData template() {
final Long id = null;
final Collection<FeatureCriteriaScoreData> criteriaScores = null;
final BigDecimal overallScore = null;
final String overallColor = null;
final Collection<Map<String, Object>> scoringModels = new ArrayList<>(
Arrays.asList(Map.of("code", "ruleBased", "value", "Rule Based")));
return new RuleBasedScorecardData(id, criteriaScores, overallScore, overallColor, scoringModels);
}
}