diff options
author | Manoop Talasila <talasila@research.att.com> | 2018-09-12 16:23:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-12 16:23:25 +0000 |
commit | cc49cd5fb8fc48af6f9f28a478776d2c35d27458 (patch) | |
tree | a41c863f5a1056f44e624461c4353009d9427df0 | |
parent | 846915c09bf663c486edefb356e82b0745fabd14 (diff) | |
parent | 0c46de0dbd112b4ee2f405a19b4839c5472f20cb (diff) |
Merge "Result.java : Fixed sonar issue"
-rw-r--r-- | ecomp-portal-BE-common/src/main/java/org/onap/portalapp/model/Result.java | 10 |
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; } } |