aboutsummaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/inventory/ServiceTypeServiceMap.java
blob: 292773a012c2fe98e5684ccc7691b74517659194 (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
package org.onap.ccsdk.dashboard.model.inventory;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public class ServiceTypeServiceMap {

	private final String serviceTypeId;
	
	private final ServiceRefList serviceRefList;
	
	@JsonCreator
	public ServiceTypeServiceMap (@JsonProperty("serviceTypeId") String serviceTypeId, 
			@JsonProperty("created") ServiceRefList serviceRefList) {
		this.serviceTypeId = serviceTypeId;
		this.serviceRefList = serviceRefList;
	}

	public String getServiceTypeId() {
		return serviceTypeId;
	}

	public ServiceRefList getServiceRefList() {
		return serviceRefList;
	}
}