diff options
author | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-08-20 12:53:57 +0530 |
---|---|---|
committer | Thugutla Sai Lakshmi <tsaila10@in.ibm.com> | 2019-08-21 07:30:13 +0000 |
commit | ed8dd6b1e37c43f07ad7e70538ba0e96c67d9129 (patch) | |
tree | 6a868f789d6a419e73f049d9844c60ab8b4ef004 /vid-app-common/src/main/java | |
parent | 7bb28ca74c56e7312d41f8e152bc40d255172cdb (diff) |
Move this variables to comply with Java Code Conventions
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>
Diffstat (limited to 'vid-app-common/src/main/java')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/AaiGetNetworkCollectionDetails.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/AaiGetNetworkCollectionDetails.java b/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/AaiGetNetworkCollectionDetails.java index ec7ea8a53..8ad6cd61a 100644 --- a/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/AaiGetNetworkCollectionDetails.java +++ b/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetNetworkCollectionDetails/AaiGetNetworkCollectionDetails.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. @@ -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; |