Move this variables to comply with Java Code Conventions 26/93926/2
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Tue, 20 Aug 2019 07:23:57 +0000 (12:53 +0530)
committerThugutla Sai Lakshmi <tsaila10@in.ibm.com>
Wed, 21 Aug 2019 07:30:13 +0000 (07:30 +0000)
Move this variables to comply with Java Code Conventions

Issue-ID: VID-561
Change-Id: Id618b3717658dcd44b17a5f85b0b87e7e8b71826
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
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;