You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by co...@apache.org on 2019/10/12 15:02:37 UTC

[fineract] branch develop updated (9c9266f -> 4c82b56)

This is an automated email from the ASF dual-hosted git repository.

conradsp pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git.


    from 9c9266f  Merge pull request #643 from vorburger/docker-compose-selinux
     new 6127219  Set host to fineractmysql when running in docker
     new 4dbfcd6  Merge remote-tracking branch 'upstream/develop' into develop
     new a449958  Openbanking - API Gateway 1.0
     new bbcbf94  Merge remote-tracking branch 'marta/develop' into develop
     new e7b26a3  Fixes for license headers
     new 4c82b56  Merge pull request #640 from conradsp/develop

The 5058 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:
 .../interoperation/api/InteropApiResource.java     |  92 +++++++++----
 .../interoperation/data/InteropAccountData.java    | 142 ++++++++++++++++++++
 ...a => InteropIdentifierAccountResponseData.java} |  12 +-
 ...RequestData.java => InteropIdentifierData.java} |  47 +++----
 ...ta.java => InteropIdentifiersResponseData.java} |  43 +++---
 .../data/InteropRefundData.java}                   |  18 +--
 .../interoperation/data/InteropRequestData.java    |   5 +
 .../data/InteropTransactionData.java               | 149 +++++++++++++++++++++
 .../data/InteropTransactionTypeData.java           |  22 ++-
 .../data/InteropTransactionsData.java              |  54 ++++++++
 .../interoperation/service/InteropService.java     |  25 ++--
 .../interoperation/service/InteropServiceImpl.java |  57 ++++++--
 .../fineract/interoperation/util/InteropUtil.java  |   2 +
 .../fineract/portfolio/note/domain/Note.java       |   3 +
 .../savings/SavingsAccountTransactionType.java     |   4 +-
 .../portfolio/savings/domain/SavingsAccount.java   |  39 +++++-
 .../savings/domain/SavingsAccountTransaction.java  |  21 +--
 .../portfolio/savings/domain/SavingsProduct.java   |   6 +-
 ...countWritePlatformServiceJpaRepositoryImpl.java |   6 +-
 .../sample_data/tn03_interop_sample_data.sql       |  16 ++-
 .../sample_data/tn04_interop_sample_data.sql       |  14 +-
 21 files changed, 625 insertions(+), 152 deletions(-)
 create mode 100644 fineract-provider/src/main/java/org/apache/fineract/interoperation/data/InteropAccountData.java
 copy fineract-provider/src/main/java/org/apache/fineract/interoperation/data/{InteropIdentifierResponseData.java => InteropIdentifierAccountResponseData.java} (68%)
 copy fineract-provider/src/main/java/org/apache/fineract/interoperation/data/{InteropIdentifierRequestData.java => InteropIdentifierData.java} (56%)
 rename fineract-provider/src/main/java/org/apache/fineract/interoperation/data/{InteropIdentifierResponseData.java => InteropIdentifiersResponseData.java} (50%)
 copy fineract-provider/src/main/java/org/apache/fineract/{accounting/closure/service/GLClosureReadPlatformService.java => interoperation/data/InteropRefundData.java} (70%)
 mode change 100755 => 100644
 create mode 100644 fineract-provider/src/main/java/org/apache/fineract/interoperation/data/InteropTransactionData.java
 create mode 100644 fineract-provider/src/main/java/org/apache/fineract/interoperation/data/InteropTransactionsData.java