Merge "Result.java : Fixed sonar issue"
authorManoop Talasila <talasila@research.att.com>
Wed, 12 Sep 2018 16:23:25 +0000 (16:23 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 12 Sep 2018 16:23:25 +0000 (16:23 +0000)
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;
        }
        
 }