This is an automated email from the ASF dual-hosted git repository.
vorburger pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git.
from b612736 chore(deps): update dependency
org.webjars.npm:swagger-ui-dist to v3.38.0
new 85e3c4d Credit_Bureau_Phase3 (FINERACT-734)
new db32e56 CreditBureau-Integration-Api-documentation
The 2 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:
.../commands/service/CommandWrapperBuilder.java | 41 ++
.../infrastructure/core/api/JsonCommand.java | 6 +
.../core/data/CommandProcessingResult.java | 23 +-
.../core/data/CommandProcessingResultBuilder.java | 11 +-
.../api/CreditBureauConfigurationAPI.java | 46 ++
.../api/CreditBureauIntegrationAPI.java} | 138 ++---
.../data/CreditBureauConfigurations.java} | 12 +-
.../creditbureau/data/CreditBureauReportData.java | 57 ++
.../creditbureau/data/CreditReportData.java} | 27 +-
.../CreditReportReadPlatformServiceImpl.java} | 37 +-
.../domain/CreditBureauConfiguration.java | 34 +-
.../CreditBureauConfigurationRepository.java | 39 ++
...reditBureauConfigurationRepositoryWrapper.java} | 16 +-
.../CreditBureauLoanProductMappingRepository.java | 5 +
.../creditbureau/domain/CreditBureauToken.java | 116 ++++
.../domain/CreditReport.java} | 55 +-
.../domain/CreditReportRepository.java} | 10 +-
...tBureauRepository.java => TokenRepository.java} | 9 +-
.../domain/TokenRepositoryWrapper.java} | 23 +-
.../exception/CreditReportNotFoundException.java} | 10 +-
...editBureauConfigurationDataCommandHandler.java} | 16 +-
....java => DeleteCreditReportCommandHandler.java} | 13 +-
.../handler/GetCreditReportCommandHandler.java} | 16 +-
...er.java => SaveCreditReportCommandHandler.java} | 14 +-
...editBureauConfigurationDataCommandHandler.java} | 16 +-
...nfigurationCommandFromApiJsonDeserializer.java} | 43 +-
...BureauTokenCommandFromApiJsonDeserializer.java} | 68 ++-
...itBureauConfigurationWritePlatformService.java} | 6 +-
...ureauConfigurationWritePlatformServiceImpl.java | 110 ++++
...e.java => CreditReportReadPlatformService.java} | 6 +-
....java => CreditReportWritePlatformService.java} | 11 +-
.../CreditReportWritePlatformServiceImpl.java | 214 +++++++
...editBureauIntegrationWritePlatformService.java} | 19 +-
...tBureauIntegrationWritePlatformServiceImpl.java | 465 +++++++++++++++
.../core_db/V327_1__creditbureau_integration.sql | 80 +++
.../src/main/resources/static/api-docs/apiLive.htm | 653 +++++++++++++++++++++
.../loanaccount/ThitsaworksCreditBureauTest.java | 128 ++++
...est.java => CreditBureauConfigurationTest.java} | 32 +-
.../common/CreditBureauConfigurationHelper.java | 102 ++++
39 files changed, 2432 insertions(+), 295 deletions(-)
copy
fineract-provider/src/main/java/org/apache/fineract/{adhocquery/api/AdHocApiResource.java
=> infrastructure/creditbureau/api/CreditBureauIntegrationAPI.java} (50%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/{documentmanagement/api/ImagesApiResourceSwagger.java
=> creditbureau/data/CreditBureauConfigurations.java} (79%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/data/CreditBureauReportData.java
copy
fineract-provider/src/main/java/org/apache/fineract/{useradministration/data/PasswordValidationPolicyData.java
=> infrastructure/creditbureau/data/CreditReportData.java} (62%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/{service/CreditBureauReadPlatformServiceImpl.java
=> data/CreditReportReadPlatformServiceImpl.java} (54%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/domain/CreditBureauConfigurationRepository.java
copy
fineract-provider/src/main/java/org/apache/fineract/{portfolio/client/domain/ClientTransferDetailsRepositoryWrapper.java
=>
infrastructure/creditbureau/domain/CreditBureauConfigurationRepositoryWrapper.java}
(58%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/domain/CreditBureauToken.java
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/{campaigns/email/domain/EmailConfiguration.java
=> creditbureau/domain/CreditReport.java} (50%)
copy
fineract-provider/src/main/java/org/apache/fineract/{useradministration/domain/AppUserRepository.java
=> infrastructure/creditbureau/domain/CreditReportRepository.java} (67%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/domain/{CreditBureauRepository.java
=> TokenRepository.java} (77%)
copy
fineract-provider/src/main/java/org/apache/fineract/{portfolio/client/domain/ClientTransferDetailsRepositoryWrapper.java
=> infrastructure/creditbureau/domain/TokenRepositoryWrapper.java} (58%)
copy
fineract-provider/src/main/java/org/apache/fineract/{portfolio/tax/exception/TaxComponentNotFoundException.java
=> infrastructure/creditbureau/exception/CreditReportNotFoundException.java}
(73%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/handler/{UpdateCreditBureauLoanProductMappingCommandHandler.java
=> AddCreditBureauConfigurationDataCommandHandler.java} (73%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/handler/{CreateCreditBureauLoanProductMappingCommandHandler.java
=> DeleteCreditReportCommandHandler.java} (71%)
copy
fineract-provider/src/main/java/org/apache/fineract/{portfolio/loanaccount/handler/LoanRepaymentAdjustmentCommandHandler.java
=> infrastructure/creditbureau/handler/GetCreditReportCommandHandler.java}
(74%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/handler/{CreateCreditBureauLoanProductMappingCommandHandler.java
=> SaveCreditReportCommandHandler.java} (71%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/handler/{UpdateCreditBureauLoanProductMappingCommandHandler.java
=> UpdateCreditBureauConfigurationDataCommandHandler.java} (73%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/serialization/{CreditBureauCommandFromApiJsonDeserializer.java
=> CreditBureauConfigurationCommandFromApiJsonDeserializer.java} (68%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/serialization/{CreditBureauCommandFromApiJsonDeserializer.java
=> CreditBureauTokenCommandFromApiJsonDeserializer.java} (52%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/{CreditBureauLoanProductMappingWritePlatformService.java
=> CreditBureauConfigurationWritePlatformService.java} (79%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/CreditBureauConfigurationWritePlatformServiceImpl.java
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/{CreditBureauReadPlatformService.java
=> CreditReportReadPlatformService.java} (86%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/{CreditBureauLoanProductMappingWritePlatformService.java
=> CreditReportWritePlatformService.java} (68%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/CreditReportWritePlatformServiceImpl.java
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/{CreditBureauReadConfigurationService.java
=> ThitsaWorksCreditBureauIntegrationWritePlatformService.java} (58%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/infrastructure/creditbureau/service/ThitsaWorksCreditBureauIntegrationWritePlatformServiceImpl.java
create mode 100644
fineract-provider/src/main/resources/sql/migrations/core_db/V327_1__creditbureau_integration.sql
create mode 100644
fineract-provider/src/test/java/org/apache/fineract/portfolio/loanaccount/ThitsaworksCreditBureauTest.java
copy
integration-tests/src/test/java/org/apache/fineract/integrationtests/{SurveyIntegrationTest.java
=> CreditBureauConfigurationTest.java} (60%)
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/common/CreditBureauConfigurationHelper.java