From c030e6c89fa35d7fee49afd34bd1190995da98f8 Mon Sep 17 00:00:00 2001 From: dinesha Date: Thu, 8 Aug 2019 16:15:34 +0530 Subject: Sonar Fix - Group.java Fixed Sonar issues accross the file Issue-ID: VID-547 Change-Id: I128b69d6ddcf8b1198ffd42530d664c92dd13cc7 Signed-off-by: dinesha --- .../src/main/java/org/onap/vid/asdc/beans/tosca/Group.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vid-app-common/src/main/java/org/onap/vid/asdc/beans') diff --git a/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Group.java b/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Group.java index e1d2544b7..132987a22 100644 --- a/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Group.java +++ b/vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Group.java @@ -38,7 +38,7 @@ public class Group { private ToscaMetadata metadata; /** The vf module type. */ - private String vf_module_type; + private String vfModuleType; /** The properties. */ private Map properties; @@ -103,7 +103,7 @@ public class Group { * @return the vf module type */ public String getvf_module_type() { - return vf_module_type; + return vfModuleType; } /** @@ -111,8 +111,8 @@ public class Group { * * @param vf_module_type the new vf module type */ - public void setvf_module_type(String vf_module_type) { - this.vf_module_type = vf_module_type; + public void setvf_module_type(String vfModuleType) { + this.vfModuleType = vfModuleType; } /** -- cgit 1.2.3-korg