This is an automated email from the ASF dual-hosted git repository.
Aman-Mittal pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fineract-loan-origination.git
from 438b4b7 Merge pull request #31 from
apache/dependabot/github_actions/actions/cache-6.1.0
add c49756f FINERACT-2442: Add modular credit scoring factor
implementations
add ebbf298 FINERACT-2442: Add modular credit scoring factor
implementations
add 14ec127 FINERACT-2442: Fix string duplication, hardcoded thresholds,
and ArithmeticException risk
add 83020c5 FINERACT-2442: WIP local spotless apply before rebase
new f909686 Merge pull request #29 from
KRYSTALM7/feature/FINERACT-2442-credit-scoring
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../los/scoring/ScoringWeightsProperties.java | 66 +++++++---
.../los/scoring/factors/DebtBurdenFactor.java | 131 ++++++++++++++++++
.../scoring/factors/EmploymentStabilityFactor.java | 146 +++++++++++++++++++++
.../los/scoring/factors/IncomeLoanRatioFactor.java | 133 +++++++++++++++++++
.../los/scoring/factors/LoanPurposeRiskFactor.java | 121 +++++++++++++++++
.../scoring/factors/RepaymentHistoryFactor.java | 105 +++++++++++++++
.../los/scoring/model/ApplicantScoringProfile.java | 10 +-
src/main/resources/application.yml | 58 ++++++--
8 files changed, 733 insertions(+), 37 deletions(-)
create mode 100644
src/main/java/org/apache/fineract/los/scoring/factors/DebtBurdenFactor.java
create mode 100644
src/main/java/org/apache/fineract/los/scoring/factors/EmploymentStabilityFactor.java
create mode 100644
src/main/java/org/apache/fineract/los/scoring/factors/IncomeLoanRatioFactor.java
create mode 100644
src/main/java/org/apache/fineract/los/scoring/factors/LoanPurposeRiskFactor.java
create mode 100644
src/main/java/org/apache/fineract/los/scoring/factors/RepaymentHistoryFactor.java