diff options
author | Arul <arul.nambi@amdocs.com> | 2018-01-11 09:50:40 -0500 |
---|---|---|
committer | Arul <arul.nambi@amdocs.com> | 2018-01-11 10:12:09 -0500 |
commit | 74d351a550b50ba963fa0db6053ed4bd501a9868 (patch) | |
tree | e38b9c0f3c4049eeeea1436019446797fe3ec56c /src/main | |
parent | 9eb9e258f0ab06a516f6d88d1aedc36fc22aeeaf (diff) |
Fixing jenkins build
Clenaing up the snapshot versions and adding implementation for the
getuserconfig
Change-Id: I17aac0f10a614e5e2420287e5ac165f4b5870c9e
Signed-off-by: Arul <arul.nambi@amdocs.com>
Issue-ID: AAI-542
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/aai/sparky/security/portal/PortalRestAPIServiceImpl.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/org/onap/aai/sparky/security/portal/PortalRestAPIServiceImpl.java b/src/main/java/org/onap/aai/sparky/security/portal/PortalRestAPIServiceImpl.java index a39a05a..3bfc7ea 100644 --- a/src/main/java/org/onap/aai/sparky/security/portal/PortalRestAPIServiceImpl.java +++ b/src/main/java/org/onap/aai/sparky/security/portal/PortalRestAPIServiceImpl.java @@ -217,10 +217,9 @@ public class PortalRestAPIServiceImpl implements IPortalRestAPIService { return formatter.format(args); } - @Override public List<EcompRole> getAvailableRoles(String requestedLoginId) throws PortalAPIException { - // TODO Auto-generated method stub - return null; + LOG.debug("Get available roles"); + return UserManager.getRoles(); } }
\ No newline at end of file |