summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java
diff options
context:
space:
mode:
authorst782s <statta@research.att.com>2017-07-27 09:57:46 -0400
committerst782s <statta@research.att.com>2017-07-27 12:37:10 -0400
commitac05129bf7c8fbe62f17647f6233ce01a58ca1a3 (patch)
tree305fe715730297eaa9a6d12ba40ee19c00c0bb8c /ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java
parentcb02f8fc9b1d6233fc75fe37db313abd32edf6cb (diff)
Role centralization
Adding functionality to account for global roles across all applications which will be added at portal level Issue: [PORTAL-21] Change-Id: I4cdee652aaaa124abddb63410e1e45257b5bb6e0 Signed-off-by: st782s <statta@research.att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java')
-rw-r--r--ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java b/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java
index 17691908..879b2a9a 100644
--- a/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java
+++ b/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java
@@ -48,7 +48,7 @@ public class UserServiceCentalizedImpl implements UserService {
User user = new User();
HashSet<RoleFunction> rolefun = null;
String orgUserId = getUserByProfileId(id);
- String responseString = restApiRequestBuilder.getViaREST("/getUser/" + orgUserId, true, id);
+ String responseString = restApiRequestBuilder.getViaREST("/user/" + orgUserId, true, id);
user = mapper.readValue(responseString, User.class);
@SuppressWarnings("unchecked")