summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/main
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-08-23 14:37:16 +0530
committerArundathi Patil <arundpil@in.ibm.com>2018-08-24 08:37:51 +0000
commit0c46de0dbd112b4ee2f405a19b4839c5472f20cb (patch)
tree071334a7aeae5500920d3da2c5d35f369d4e99f7 /ecomp-portal-BE-common/src/main
parentc7684e595461b70b09d0d9ff15b5ad23aeabebc9 (diff)
Result.java : Fixed sonar issue
Fixed the below sonar issue at line 41, 'Rename feild 'result' at line 41 Issue-ID: PORTAL-371 Change-Id: I05a25aa44631415c3ab045defd129f3bf61bd36d Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'ecomp-portal-BE-common/src/main')
-rw-r--r--ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java b/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java
index 216ae3af..8b099970 100644
--- a/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java
+++ b/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java
@@ -3,6 +3,8 @@
* ONAP Portal
* ===================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ *
+ * Modifications Copyright (C) 2018 IBM.
* ===================================================================
*
* Unless otherwise specified, all software contained herein is licensed
@@ -38,18 +40,18 @@
package org.onap.portalapp.model;
public class Result {
- private String result;
+ private String results;
public Result(String result) {
- this.result = result;
+ this.results = result;
}
public String getResult() {
- return result;
+ return results;
}
public void setResult(String result) {
- this.result = result;
+ this.results = result;
}
}