aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThugutla sailakshmi <tsaila10@in.ibm.com>2019-08-20 13:11:54 +0530
committerIttay Stern <ittay.stern@att.com>2019-08-21 08:57:18 +0000
commitb6dd2ce5c757dde7d5f021b217cba402c808d588 (patch)
tree648ac7fd9aa2659acf6c88b6b6b699ecdfdeb347
parent6defdf50b9de3795118a0652cfad0b8dabf3a497 (diff)
Move this variables and constructors to comply with Java Code Conventions
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>
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java19
1 files changed, 10 insertions, 9 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java b/vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java
index b14cfa8e2..37ec17976 100644
--- a/vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java
+++ b/vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java
@@ -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.
@@ -21,15 +22,8 @@
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;