From ac05129bf7c8fbe62f17647f6233ce01a58ca1a3 Mon Sep 17 00:00:00 2001 From: st782s Date: Thu, 27 Jul 2017 09:57:46 -0400 Subject: 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 --- .../org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserServiceCentalizedImpl.java') 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 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") -- cgit 1.2.3-korg