Fixing jenkins build 57/27957/2
authorArul <arul.nambi@amdocs.com>
Thu, 11 Jan 2018 14:50:40 +0000 (09:50 -0500)
committerArul <arul.nambi@amdocs.com>
Thu, 11 Jan 2018 15:12:09 +0000 (10:12 -0500)
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

pom.xml
src/main/java/org/onap/aai/sparky/security/portal/PortalRestAPIServiceImpl.java

diff --git a/pom.xml b/pom.xml
index c04470b..d10d580 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <dependency>
             <groupId>org.onap.aai.logging-service</groupId>
             <artifactId>common-logging</artifactId>
-            <version>${project.version}</version>
+            <version>1.2.0</version>
         </dependency>
 
         <dependency>
             <groupId>org.onap.aai.aai-common</groupId>
             <artifactId>aai-schema</artifactId>
-            <version>${project.version}</version>
+            <version>1.2.0</version>
         </dependency>
 
         <dependency>
             <groupId>org.onap.aai</groupId>
             <artifactId>rest-client</artifactId>
-            <version>${project.version}</version>
+            <version>1.2.0</version>
         </dependency>
 
                <dependency>
index a39a05a..3bfc7ea 100644 (file)
@@ -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