Merge "Move this variables to comply with Java Code Conventions."
authorIttay Stern <ittay.stern@att.com>
Mon, 26 Aug 2019 17:48:21 +0000 (17:48 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 26 Aug 2019 17:48:21 +0000 (17:48 +0000)
vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/RelationshipList.java

index f511a47..6fe295c 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.
@@ -27,6 +28,8 @@ import java.util.List;
 @JsonIgnoreProperties(ignoreUnknown = true)
 public class RelationshipList {
        
+       public List<Relationship> relationship;
+       
        @JsonProperty("relationship")
        public List<Relationship> getRelationship() {
                return relationship;
@@ -37,7 +40,6 @@ public class RelationshipList {
                this.relationship = relationship;
        }
 
-       public List<Relationship> relationship;