Move this variables to comply with Java Code Conventions 24/94024/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Wed, 21 Aug 2019 07:41:14 +0000 (13:11 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Wed, 21 Aug 2019 07:41:57 +0000 (13:11 +0530)
Move this variables  to comply with Java Code Conventions

Issue-ID: VID-581
Change-Id: I74728ee5234501ba3c2a8fe5ae889c1e9186f2dc
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
vid-app-common/src/main/java/org/onap/vid/changeManagement/GetVnfWorkflowRelationRequest.java

index 7a9787c..0c3a57d 100644 (file)
@@ -3,6 +3,7 @@
  * VID
  * ================================================================================
  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -25,6 +26,9 @@ import java.util.List;
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 public class GetVnfWorkflowRelationRequest {
+       
+       @JsonProperty("vnfsDetails")
+       private List<VnfDetails>  vnfsDetails;
 
        public GetVnfWorkflowRelationRequest() {
        }
@@ -32,9 +36,6 @@ public class GetVnfWorkflowRelationRequest {
        public GetVnfWorkflowRelationRequest(List<VnfDetails> vnfsDetails) {
                this.vnfsDetails = vnfsDetails;
        }
-
-       @JsonProperty("vnfsDetails")
-       private List<VnfDetails>  vnfsDetails;
        
        @JsonProperty("vnfsDetails")
        public List<VnfDetails> getVnfDetails() {