Sonar Fix - Group.java 53/93053/1
authordinesha <dineshgs@in.ibm.com>
Thu, 8 Aug 2019 10:45:34 +0000 (16:15 +0530)
committerdinesha <dineshgs@in.ibm.com>
Thu, 8 Aug 2019 10:46:14 +0000 (16:16 +0530)
Fixed Sonar issues accross the file

Issue-ID: VID-547
Change-Id: I128b69d6ddcf8b1198ffd42530d664c92dd13cc7
Signed-off-by: dinesha <dineshgs@in.ibm.com>
vid-app-common/src/main/java/org/onap/vid/asdc/beans/tosca/Group.java

index e1d2544..132987a 100644 (file)
@@ -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<String, Object> 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;
        }
        
        /**