You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2018/06/18 19:15:04 UTC

[airavata] branch group-based-auth updated (b7b8054 -> 5c35006)

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

machristie pushed a change to branch group-based-auth
in repository https://gitbox.apache.org/repos/asf/airavata.git.


    from b7b8054  AIRAVATA-2837 Set experiment id same as before refactor
     new cba802c  Removing unintended commit
     new 5c35006  Add getAllAppModules to methods that gateway-user can call

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:
 .../org/apache/airavata/service/security/KeyCloakSecurityManager.java  | 2 +-
 .../apache/airavata/registry/core/repositories/AbstractRepository.java | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
machristie@apache.org.

[airavata] 01/02: Removing unintended commit

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch group-based-auth
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit cba802c3dc2d7d7bbbc52e220b6abbf830f78164
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Jun 18 15:07:31 2018 -0400

    Removing unintended commit
---
 .../apache/airavata/registry/core/repositories/AbstractRepository.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/repositories/AbstractRepository.java b/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/repositories/AbstractRepository.java
index ee4b3c9..716876b 100644
--- a/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/repositories/AbstractRepository.java
+++ b/modules/registry-refactoring/src/main/java/org/apache/airavata/registry/core/repositories/AbstractRepository.java
@@ -50,9 +50,6 @@ public abstract class AbstractRepository<T, E, Id> {
     public T update(T t) {
         Mapper mapper = ObjectMapperSingleton.getInstance();
         E entity = mapper.map(t, dbEntityGenericClass);
-//        if (entity instanceof ParentIdPopulater) {
-//            ((ParentIdPopulater) entity).populateParentIds();
-//        }
         E persistedCopy = execute(entityManager -> entityManager.merge(entity));
         return mapper.map(persistedCopy, thriftGenericClass);
     }

-- 
To stop receiving notification emails like this one, please contact
machristie@apache.org.

[airavata] 02/02: Add getAllAppModules to methods that gateway-user can call

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch group-based-auth
in repository https://gitbox.apache.org/repos/asf/airavata.git

commit 5c350069266835958d72dcf2e77adbbfe0d3acac
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Mon Jun 18 15:14:24 2018 -0400

    Add getAllAppModules to methods that gateway-user can call
---
 .../org/apache/airavata/service/security/KeyCloakSecurityManager.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airavata-services/services-security/src/main/java/org/apache/airavata/service/security/KeyCloakSecurityManager.java b/airavata-services/services-security/src/main/java/org/apache/airavata/service/security/KeyCloakSecurityManager.java
index 2dd43e7..2ae5432 100644
--- a/airavata-services/services-security/src/main/java/org/apache/airavata/service/security/KeyCloakSecurityManager.java
+++ b/airavata-services/services-security/src/main/java/org/apache/airavata/service/security/KeyCloakSecurityManager.java
@@ -147,7 +147,7 @@ public class KeyCloakSecurityManager implements AiravataSecurityManager {
                 "/airavata/getAvailableAppInterfaceComputeResources|/airavata/getComputeResource|/airavata/getAllComputeResourceNames|" +
                 "/airavata/getWorkflow|/airavata/getWorkflowTemplateId|/airavata/isWorkflowExistWithName|/airavata/registerDataProduct|" +
                 "/airavata/getDataProduct|/airavata/registerReplicaLocation|/airavata/getParentDataProduct|/airavata/getChildDataProducts|" +
-                "/airavata/getAllAccessibleUsers|/airavata/getAllApplicationDeployments|" + USER_RESOURCE_PROFILE_USER_METHODS + "|" +
+                "/airavata/getAllAccessibleUsers|/airavata/getAllApplicationDeployments|/airavata/getAllAppModules|" + USER_RESOURCE_PROFILE_USER_METHODS + "|" +
                 SHARING_RESOURCE_METHODS + "|" + SSH_ACCOUNT_PROVISIONER_METHODS);
 
         initializeSecurityInfra();

-- 
To stop receiving notification emails like this one, please contact
machristie@apache.org.