From cfb69f44f841338e1f208225ec006388e986bd2c Mon Sep 17 00:00:00 2001 From: "Kotta, Shireesha (sk434m)" Date: Tue, 6 Mar 2018 09:44:53 -0500 Subject: Added Junits & AAF attributes Support Issue-ID: PORTAL-136 Includes JUNITS, AAF attributes support Change-Id: Id4cc9f64268017665d7245d0a10369c9b498ba2f Signed-off-by: Kotta, Shireesha (sk434m) --- .../crossapi/PortalRestAPICentralServiceImpl.java | 2 +- .../onboarding/crossapi/PortalRestAPIProxy.java | 6 +++--- .../portalsdk/core/restful/domain/EcompRole.java | 9 ++++----- .../core/restful/domain/EcompRoleFunction.java | 21 ++++++++++++--------- 4 files changed, 20 insertions(+), 18 deletions(-) (limited to 'ecomp-sdk/epsdk-fw/src/main/java/org/onap') diff --git a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPICentralServiceImpl.java b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPICentralServiceImpl.java index 42dac01a..b9b970e8 100644 --- a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPICentralServiceImpl.java +++ b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPICentralServiceImpl.java @@ -143,7 +143,7 @@ public class PortalRestAPICentralServiceImpl implements IPortalRestAPIService { TypeFactory.defaultInstance().constructCollectionType(List.class, EcompRole.class)); } catch (IOException e) { - String response = "PortalRestAPICentralServiceImpl.getUsers failed"; + String response = "PortalRestAPICentralServiceImpl.getRoles failed"; logger.error(response, e); throw new PortalAPIException(response, e); } diff --git a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPIProxy.java b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPIProxy.java index 810771bd..8669b414 100644 --- a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPIProxy.java +++ b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/crossapi/PortalRestAPIProxy.java @@ -251,7 +251,7 @@ public class PortalRestAPIProxy extends HttpServlet implements IPortalRestAPISer pushUser(user); if (logger.isDebugEnabled()) logger.debug("doPost: pushUser: success"); - responseJson = buildJsonResponse(true, null); + responseJson = buildJsonResponse(true, "user saved successfully"); response.setStatus(HttpServletResponse.SC_OK); } catch (Exception ex) { responseJson = buildJsonResponse(ex); @@ -267,7 +267,7 @@ public class PortalRestAPIProxy extends HttpServlet implements IPortalRestAPISer editUser(loginId, user); if (logger.isDebugEnabled()) logger.debug("doPost: editUser: success"); - responseJson = buildJsonResponse(true, null); + responseJson = buildJsonResponse(true, "user saved successfully"); response.setStatus(HttpServletResponse.SC_OK); } catch (Exception ex) { responseJson = buildJsonResponse(ex); @@ -290,7 +290,7 @@ public class PortalRestAPIProxy extends HttpServlet implements IPortalRestAPISer pushUserRole(loginId, roles); if (logger.isDebugEnabled()) logger.debug("doPost: pushUserRole: success"); - responseJson = buildJsonResponse(true, null); + responseJson = buildJsonResponse(true, "saveRoles is successful"); response.setStatus(HttpServletResponse.SC_OK); } } catch (Exception ex) { diff --git a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRole.java b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRole.java index f0447142..a7b8fc05 100644 --- a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRole.java +++ b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRole.java @@ -46,14 +46,12 @@ import com.fasterxml.jackson.annotation.JsonInclude; * This bean holds the information for a role in the role and user management * REST API. */ -@JsonIgnoreProperties(ignoreUnknown = true) public class EcompRole implements Comparable { protected Long id; private String name; - @JsonInclude(JsonInclude.Include.NON_NULL) private Set roleFunctions; - + public Set getRoleFunctions() { return roleFunctions; } @@ -103,10 +101,11 @@ public class EcompRole implements Comparable { return true; } + + @Override public String toString() { - String s = "@EcompRole[id: " + id + "; name: " + name + "]"; - return s; + return "EcompRole [id=" + id + ", name=" + name + ", roleFunctions=" + roleFunctions + "]"; } @Override diff --git a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRoleFunction.java b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRoleFunction.java index 6e108a02..f0ad43e0 100644 --- a/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRoleFunction.java +++ b/ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/restful/domain/EcompRoleFunction.java @@ -37,17 +37,11 @@ */ package org.onap.portalsdk.core.restful.domain; -import com.fasterxml.jackson.annotation.JsonIgnoreProperties; -import com.fasterxml.jackson.annotation.JsonInclude; - -@JsonIgnoreProperties(ignoreUnknown = true) public class EcompRoleFunction implements Comparable{ private String name; private String code; - @JsonInclude(JsonInclude.Include.NON_NULL) private String type; - @JsonInclude(JsonInclude.Include.NON_NULL) private String action; @@ -75,10 +69,19 @@ public class EcompRoleFunction implements Comparable{ public void setAction(String action) { this.action = action; } + @Override public int compareTo(EcompRoleFunction arg0) { - return this.getCode().compareTo(arg0.getCode()); + int result = this.code.compareTo(arg0.getCode()); + if (result == 0) { + result = this.name.compareTo(arg0.getName()); + } + if (result == 0) { + result = this.type.compareTo(arg0.getType()); + } + if (result == 0) { + result = this.action.compareTo(arg0.getAction()); + } + return result; } - } - -- cgit 1.2.3-korg