Result.java : Fixed sonar issue 23/62023/2
authorArundathi Patil <arundpil@in.ibm.com>
Thu, 23 Aug 2018 09:07:16 +0000 (14:37 +0530)
committerArundathi Patil <arundpil@in.ibm.com>
Fri, 24 Aug 2018 08:37:51 +0000 (08:37 +0000)
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>
ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java

index 216ae3a..8b09997 100644 (file)
@@ -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
 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;
        }
        
 }