You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by is...@apache.org on 2021/06/07 13:37:19 UTC

[airavata-custos] branch develop updated (80ca1fd -> de59ce9)

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

isjarana pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git.


    from 80ca1fd  Merge pull request #191 from isururanawaka/sdk_update
     new ecd218d  custos event based messaging
     new 86520cf  custos event based messaging
     new de59ce9  Merge pull request #188 from isururanawaka/event_based_messaging

The 374 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:
 .../pom.xml                                        |  15 +-
 .../custos/messaging/client/MessagingClient.java   |  66 ++++
 custos-core-services-client-stubs/pom.xml          |   1 +
 .../custos-messaging-core-service}/Dockerfile      |   0
 .../pom.xml                                        |  25 +-
 .../src/main/helm/.helmignore                      |   0
 .../src/main/helm/Chart.yaml                       |   2 +-
 .../src/main/helm/templates/NOTES.txt              |   0
 .../src/main/helm/templates/_helpers.tpl           |   0
 .../src/main/helm/templates/deployment.yaml        |   0
 .../src/main/helm/templates/ingress.yaml           |   0
 .../src/main/helm/templates/service.yaml           |   0
 .../src/main/helm/templates/serviceaccount.yaml    |   0
 .../main/helm/templates/tests/test-connection.yaml |   0
 .../src/main/helm/values.yaml                      |   0
 .../messaging/MessagingServiceInitializer.java}    |  40 +--
 .../events/model/MessageDeserializer.java          |  57 ++++
 .../messaging/events/model/MessageSerializer.java  |  57 ++++
 .../events/publisher/MessageProducer.java          |  56 ++++
 .../custos/messaging/mapper/MessagingMapper.java}  |  44 +--
 .../persistance/model/MessagingMetadata.java}      |  64 ++--
 .../repository/MessagingMetadataRepository.java}   |  10 +-
 .../custos/messaging/service/MessagingService.java |  89 +++++
 .../src/main/proto/MessagingService.proto          |  42 +--
 .../src/main/resources/application.properties      |   8 +-
 .../src/main/resources/bootstrap.properties        |   0
 custos-core-services/pom.xml                       |   1 +
 .../resources/agentManagementService.properties    |   4 +-
 .../federatedAuthenticationCoreService.properties  |   4 +-
 .../resources/groupManagementService.properties    |   2 +
 .../main/resources/iamAdminCoreService.properties  |   8 +-
 .../main/resources/identityCoreService.properties  |   8 +-
 .../resources/identityManagementService.properties |   4 +-
 .../main/resources/logManagementService.properties |   4 +-
 .../resources/messagingCoreService.properties}     |   4 +-
 .../resourceSecretManagementService.properties     |   2 +
 .../resources/sharingManagementService.properties  |   4 +-
 .../resources/tenantManagementService.properties   |   4 +-
 .../resources/userManagementService.properties     |   4 +-
 .../custos-integration-services-commons/pom.xml    |   5 +
 .../services/commons/utils/EventPublisher.java     |  55 ++++
 .../commons/utils/OutputStreamObserver.java        |  38 +--
 ...LoggingService.proto => MessagingService.proto} |  42 +--
 .../resources/protos/TenantManagementService.proto |   7 +
 .../management/service/GroupManagementService.java |  42 ++-
 .../service/SharingManagementService.java          | 363 +++++++++++----------
 .../main/resources/tenant-management-service.pb    | Bin 151590 -> 154494 bytes
 .../tenant-management-service/pom.xml              |  13 +-
 .../interceptors/AuthInterceptorImpl.java          |  15 +
 .../management/interceptors/InputValidator.java    |   1 +
 .../service/TenantManagementService.java           |  21 ++
 .../src/main/proto/TenantManagementService.proto   |   7 +
 pom.xml                                            |  18 +
 53 files changed, 875 insertions(+), 381 deletions(-)
 copy custos-core-services-client-stubs/{sharing-core-service-client-stub => messaging-core-service-client-stub}/pom.xml (87%)
 create mode 100644 custos-core-services-client-stubs/messaging-core-service-client-stub/src/main/java/org/apache/custos/messaging/client/MessagingClient.java
 copy {custos-integration-services/custos-integration-services-swagger => custos-core-services/custos-messaging-core-service}/Dockerfile (100%)
 copy custos-core-services/{custos-logging => custos-messaging-core-service}/pom.xml (85%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/custos-messaging-core-service}/src/main/helm/.helmignore (100%)
 copy custos-core-services/{identity-core-service => custos-messaging-core-service}/src/main/helm/Chart.yaml (60%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/custos-messaging-core-service}/src/main/helm/templates/NOTES.txt (100%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/custos-messaging-core-service}/src/main/helm/templates/_helpers.tpl (100%)
 copy custos-core-services/{user-profile-core-service => custos-messaging-core-service}/src/main/helm/templates/deployment.yaml (100%)
 copy custos-core-services/{utility-services/custos-configuration-service => custos-messaging-core-service}/src/main/helm/templates/ingress.yaml (100%)
 copy custos-core-services/{user-profile-core-service => custos-messaging-core-service}/src/main/helm/templates/service.yaml (100%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/custos-messaging-core-service}/src/main/helm/templates/serviceaccount.yaml (100%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/custos-messaging-core-service}/src/main/helm/templates/tests/test-connection.yaml (100%)
 copy custos-core-services/{identity-core-service => custos-messaging-core-service}/src/main/helm/values.yaml (100%)
 copy custos-core-services/{custos-logging/src/main/java/org/apache/custos/logging/LoggingServiceInitializer.java => custos-messaging-core-service/src/main/java/org/apache/custos/messaging/MessagingServiceInitializer.java} (57%)
 create mode 100644 custos-core-services/custos-messaging-core-service/src/main/java/org/apache/custos/messaging/events/model/MessageDeserializer.java
 create mode 100644 custos-core-services/custos-messaging-core-service/src/main/java/org/apache/custos/messaging/events/model/MessageSerializer.java
 create mode 100644 custos-core-services/custos-messaging-core-service/src/main/java/org/apache/custos/messaging/events/publisher/MessageProducer.java
 copy custos-core-services/{resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/persistance/vault/PasswordSecret.java => custos-messaging-core-service/src/main/java/org/apache/custos/messaging/mapper/MessagingMapper.java} (51%)
 copy custos-core-services/{custos-logging/src/main/java/org/apache/custos/logging/persistance/model/LogEvent.java => custos-messaging-core-service/src/main/java/org/apache/custos/messaging/persistance/model/MessagingMetadata.java} (62%)
 copy custos-core-services/{sharing-core-service/src/main/java/org/apache/custos/sharing/persistance/repository/EntityTypeRepository.java => custos-messaging-core-service/src/main/java/org/apache/custos/messaging/persistance/repository/MessagingMetadataRepository.java} (73%)
 create mode 100644 custos-core-services/custos-messaging-core-service/src/main/java/org/apache/custos/messaging/service/MessagingService.java
 copy custos-integration-services/custos-integration-services-swagger/src/main/resources/protos/LoggingService.proto => custos-core-services/custos-messaging-core-service/src/main/proto/MessagingService.proto (62%)
 copy custos-core-services/{sharing-core-service => custos-messaging-core-service}/src/main/resources/application.properties (87%)
 copy custos-core-services/{custos-logging => custos-messaging-core-service}/src/main/resources/bootstrap.properties (100%)
 copy custos-core-services/{custos-logging/src/main/resources/bootstrap.properties => utility-services/custos-configuration-service/src/main/resources/messagingCoreService.properties} (86%)
 create mode 100644 custos-integration-services/custos-integration-services-commons/src/main/java/org/apache/custos/integration/services/commons/utils/EventPublisher.java
 copy custos-core-services/resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/persistance/vault/KVSecret.java => custos-integration-services/custos-integration-services-commons/src/main/java/org/apache/custos/integration/services/commons/utils/OutputStreamObserver.java (58%)
 copy custos-integration-services/custos-integration-services-swagger/src/main/resources/protos/{LoggingService.proto => MessagingService.proto} (62%)