diff options
author | Thomas Nelson <nelson24@att.com> | 2018-12-06 15:43:46 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-06 15:43:46 +0000 |
commit | 1f75a341817d245eb7b2a626b58d05c90a91e3cb (patch) | |
tree | adcd777db1d56e6b1e8dc279e6efbbb344f556a1 /src/main/java/org | |
parent | e1cb3393d9ff1553a30190b8432c40418edd9dc0 (diff) | |
parent | e94bcbb7ef713c6934b885dd5949dcd02965480b (diff) |
Merge "fixed sonar issues in AAFResonse.java"
Diffstat (limited to 'src/main/java/org')
-rw-r--r-- | src/main/java/org/onap/music/datastore/jsonobjects/AAFResponse.java | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/main/java/org/onap/music/datastore/jsonobjects/AAFResponse.java b/src/main/java/org/onap/music/datastore/jsonobjects/AAFResponse.java index df6089ee..b0f41311 100644 --- a/src/main/java/org/onap/music/datastore/jsonobjects/AAFResponse.java +++ b/src/main/java/org/onap/music/datastore/jsonobjects/AAFResponse.java @@ -2,7 +2,9 @@ * ============LICENSE_START========================================== * org.onap.music * =================================================================== - * Copyright (c) 2017 AT&T Intellectual Property + * Copyright (c) 2017 AT&T Intellectual Property + * =================================================================== + * 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. @@ -21,21 +23,22 @@ */ package org.onap.music.datastore.jsonobjects; -import java.util.ArrayList; +import java.util.List; + import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @ApiModel(value = "JsonTable", description = "Reponse class for AAF request") public class AAFResponse { - private ArrayList<NameSpace> ns = null; + private List<NameSpace> ns = null; @ApiModelProperty(value = "Namespace value") - public ArrayList<NameSpace> getNs() { + public List<NameSpace> getNs() { return ns; } - public void setNs(ArrayList<NameSpace> ns) { + public void setNs(List<NameSpace> ns) { this.ns = ns; } |