This is an automated email from the ASF dual-hosted git repository.
lahirujayathilake pushed a change to branch amie-decoder
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git
from f958d512c AMIE account creation handler implementation
add 32babb2f1 included AMIE project create handler
add 9a6a91bad Changed the db to MariaDB
add ee70dfab3 upgraded the flyway version to align with MariaDB
add 17d97cfb0 handle AMIE data project creation events
add 50ce34219 handle AMIE data project inactivation events
add 97f482d23 account creation/inactivate and project reactivate handlers
add d74879b32 AMIE person merge handler impl
add 52cc5243a fixed bug - getting into an infinite loop when a packet
failure occurs, align the entities with db schema
No new revisions were added by this update.
Summary of changes:
.gitignore | 3 +
README.md | 2 +-
amie-decoder/pom.xml | 10 +-
.../java/org/apache/custos/amie/AmiePoller.java | 2 +-
.../org/apache/custos/amie/client/AmieClient.java | 4 +-
.../amie/handler/DataAccountCreateHandler.java | 93 +++++++++++++++
.../amie/handler/DataProjectCreateHandler.java | 87 ++++++++++++++
....java => InformTransactionCompleteHandler.java} | 23 ++--
.../amie/handler/RequestAccountCreateHandler.java | 8 +-
.../handler/RequestAccountInactivateHandler.java | 95 +++++++++++++++
.../amie/handler/RequestPersonMergeHandler.java | 95 +++++++++++++++
.../amie/handler/RequestProjectCreateHandler.java | 132 +++++++++++++++++++++
.../handler/RequestProjectInactivateHandler.java | 92 ++++++++++++++
.../handler/RequestProjectReactivateHandler.java | 94 +++++++++++++++
.../org/apache/custos/amie/model/PacketEntity.java | 6 +-
.../custos/amie/model/ProcessingErrorEntity.java | 4 +-
.../custos/amie/model/ProcessingEventEntity.java | 9 +-
.../apache/custos/amie/model/ProcessingStatus.java | 6 +-
.../amie/repo/ProcessingEventRepository.java | 8 +-
.../custos/amie/worker/ProcessingEventWorker.java | 53 ++++++---
amie-decoder/src/main/resources/application.yml | 10 +-
.../migration}/V1__initial_migration.sql | 6 +-
.../resources/distribution/conf/application.yml | 6 +-
application/pom.xml | 4 +-
application/src/main/resources/application.yml | 6 +-
.../resources/distribution/conf/application.yml | 6 +-
compose/dbinit/init-db.sh | 4 +-
compose/docker-compose.yml | 12 +-
pom.xml | 9 +-
29 files changed, 812 insertions(+), 77 deletions(-)
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/DataAccountCreateHandler.java
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/DataProjectCreateHandler.java
copy
amie-decoder/src/main/java/org/apache/custos/amie/handler/{NoOpHandler.java =>
InformTransactionCompleteHandler.java} (62%)
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/RequestAccountInactivateHandler.java
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/RequestPersonMergeHandler.java
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/RequestProjectCreateHandler.java
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/RequestProjectInactivateHandler.java
create mode 100644
amie-decoder/src/main/java/org/apache/custos/amie/handler/RequestProjectReactivateHandler.java
rename amie-decoder/src/main/resources/{db.migration =>
db/migration}/V1__initial_migration.sql (95%)