org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / category / CategoryParametersResponse.java
1 package org.onap.vid.category;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 import java.util.List;
6 import java.util.Map;
7
8 public class CategoryParametersResponse {
9
10         private Map<String, List<CategoryParameterOptionRep>> categoryParameters;
11
12         public CategoryParametersResponse() {
13         }
14
15         public CategoryParametersResponse(Map<String, List<CategoryParameterOptionRep>> categoryParameters) {
16                 this.categoryParameters = categoryParameters;
17         }
18
19         @JsonProperty("categoryParameters")
20         public Map<String, List<CategoryParameterOptionRep>> getCategoryParameters() {
21                 return categoryParameters;
22         }
23
24         public void setCategoryParameters(Map<String, List<CategoryParameterOptionRep>> categoryParameters) {
25                 this.categoryParameters = categoryParameters;
26         }
27 }