From b6dd2ce5c757dde7d5f021b217cba402c808d588 Mon Sep 17 00:00:00 2001 From: Thugutla sailakshmi Date: Tue, 20 Aug 2019 13:11:54 +0530 Subject: 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 --- .../org/onap/vid/aai/model/InstanceGroupInfo.java | 19 ++++++++++--------- 1 file 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; -- cgit 1.2.3-korg