diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-08-21 09:57:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-21 09:57:21 +0000 |
commit | 92ebd799948bab4a5143910009e50ead1359a2d5 (patch) | |
tree | bae67722da3834ec2539331d562c5a4459f1ce1e /vid-app-common/src | |
parent | 76c93f1eef3d4b5483650bd2dd1a7480323b2b0a (diff) | |
parent | b6dd2ce5c757dde7d5f021b217cba402c808d588 (diff) |
Merge "Move this variables and constructors to comply with Java Code Conventions"
Diffstat (limited to 'vid-app-common/src')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/aai/model/InstanceGroupInfo.java | 19 |
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; |