Move this variables and constructors to comply with Java Code Conventions 30/93930/3
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Tue, 20 Aug 2019 07:41:54 +0000 (13:11 +0530)
committerIttay Stern <ittay.stern@att.com>
Wed, 21 Aug 2019 08:57:18 +0000 (08:57 +0000)
Move this variables and constructors  to comply with Java Code Conventions

Issue-ID: VID-561
Change-Id: Id8e4c00609ad17d624da82d8b73d14b5cb0639b1
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java

index b14cfa8..37ec179 100644 (file)
@@ -3,6 +3,7 @@
  * VID
  * ================================================================================
  * Copyright (C) 2017 - 2019 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.
 package org.onap.vid.aai.model;
 
 public class InstanceGroupInfo {
-    public String getType() {
-        return type;
-    }
-
-    public void setType(String type) {
-        this.type = type;
-    }
-
-    private String type;
+       
+       private String type;
     private String name;
 
     public InstanceGroupInfo(String name){
@@ -37,6 +31,13 @@ public class InstanceGroupInfo {
         this.type = "instance-group";
     }
 
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
 
     public String getName() {
         return name;