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

index ec7ea8a..8ad6cd6 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.
@@ -25,12 +26,13 @@ import com.fasterxml.jackson.annotation.JsonProperty;
 
 public class AaiGetNetworkCollectionDetails {
 
+        @JsonProperty("results")
+        private Result results = null;
+       
     public AaiGetNetworkCollectionDetails(){
         results = new Result();
     }
-    @JsonProperty("results")
-    private Result results = null;
-
+    
     @JsonProperty("results")
     public Result getResults() {
         return results;