diff options
author | st782s <statta@research.att.com> | 2017-07-14 14:19:22 -0400 |
---|---|---|
committer | st782s <statta@research.att.com> | 2017-07-14 14:29:49 -0400 |
commit | 3aec9d2ab7f373a12e052d5e2c1c59b2a19770dc (patch) | |
tree | fd13e4b474891a3efa1320524026d7ddad757297 /ecomp-sdk/epsdk-app-overlay | |
parent | 30b8e1fd4328ea37fc5599f8a9723ea79ae0e369 (diff) |
[Portal 21] Role management
This push includes continuation of the changes required to handle
cetralized roles,user management
Change-Id: I38e9dc946ff53ac61dd3b580c335f4ad52b372f7
Signed-off-by: st782s <statta@research.att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay')
-rw-r--r-- | ecomp-sdk/epsdk-app-overlay/pom.xml | 2 | ||||
-rw-r--r-- | ecomp-sdk/epsdk-app-overlay/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/pom.xml b/ecomp-sdk/epsdk-app-overlay/pom.xml index ebfd84fe..29d1cc5b 100644 --- a/ecomp-sdk/epsdk-app-overlay/pom.xml +++ b/ecomp-sdk/epsdk-app-overlay/pom.xml @@ -3,7 +3,7 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId> org.openecomp.ecompsdkos</groupId> + <groupId>org.openecomp.ecompsdkos</groupId> <artifactId>epsdk-project</artifactId> <version>1.3.0-SNAPSHOT</version> </parent> diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml index 39939ca0..e569972a 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml @@ -381,5 +381,9 @@ <query name="deleteReportSecurityRoles"> delete from ReportUserRole where repId = :report_id and roleId =:role_id </query> + + <query name="getUserByProfileId"> + select orgUserId from User where id = :user_id + </query> </hibernate-mapping> |