Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / commons / JsonRepresentation.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16
17 package org.onap.nbi.commons;
18
19 import java.util.LinkedHashSet;
20 import java.util.Set;
21 import org.springframework.util.MultiValueMap;
22
23 public class JsonRepresentation {
24
25     private Set<String> attributes = new LinkedHashSet<>();
26
27     public JsonRepresentation() {
28     }
29
30     public JsonRepresentation(MultiValueMap<String, String> queryParameters) {
31         this.attributes = QueryParserUtils.getFields(queryParameters);
32     }
33
34     public JsonRepresentation(Set<String> attributes) {
35         this.attributes.addAll(attributes);
36     }
37
38     public JsonRepresentation add(String attributePath) {
39         this.attributes.add(attributePath);
40         return this;
41     }
42
43     public JsonRepresentation add(JsonRepresentation jsonRepresentation) {
44         this.attributes.addAll(jsonRepresentation.getAttributes());
45         return this;
46     }
47
48     public Set<String> getAttributes() {
49         return attributes;
50     }
51
52 }