aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/test/java/org/opencomp/vid/model/category/CategoryParametersResponse.java
blob: 9b9cc8408c2cfa4fd7c2cfd135c9873ebc7c4157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.opencomp.vid.model.category;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;
import java.util.Map;

public class CategoryParametersResponse {

	private Map<String, List<CategoryParameterOptionRep>> categoryParameters;

	public CategoryParametersResponse() {
	}

	public CategoryParametersResponse(Map<String, List<CategoryParameterOptionRep>> categoryParameters) {
		this.categoryParameters = categoryParameters;
	}

	@JsonProperty("categoryParameters")
	public Map<String, List<CategoryParameterOptionRep>> getCategoryParameters() {
		return categoryParameters;
	}

	public void setCategoryParameters(Map<String, List<CategoryParameterOptionRep>> categoryParameters) {
		this.categoryParameters = categoryParameters;
	}
}