From: ezhil Date: Mon, 19 Nov 2018 15:30:52 +0000 (+0530) Subject: Fixed sonar issue in NameGenResponse X-Git-Tag: 0.4.0~100^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=46e3fce4b1c84a10628242d12d10249d84a466ed;p=ccsdk%2Fapps.git Fixed sonar issue in NameGenResponse Made variable private for the class Issue-ID: CCSDK-732 Change-Id: Idc7e8cceab09a8f01516a0b5d0953a7f113a3145 Signed-off-by: ezhil --- diff --git a/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/resource/model/NameGenResponse.java b/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/resource/model/NameGenResponse.java index c4ac7fcb..35da40c2 100644 --- a/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/resource/model/NameGenResponse.java +++ b/ms/neng/src/main/java/org/onap/ccsdk/apps/ms/neng/core/resource/model/NameGenResponse.java @@ -4,6 +4,8 @@ * ================================================================================ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. * ================================================================================ + * Modifications Copyright (C) 2018 IBM. + * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -29,7 +31,7 @@ import java.util.Map; */ public class NameGenResponse implements Serializable { private static final long serialVersionUID = -8039686696076337053L; - List> elements; + private static List> elements; public List> getElements() { return elements;