Upgrade sonar plugin
[vid.git] / vid-app-common / src / main / java / org / openecomp / vid / aai / ServiceSubscriptions.java
1 package org.openecomp.vid.aai;
2
3 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
4 import org.codehaus.jackson.annotate.JsonProperty;
5
6 import java.util.List;
7
8 /**
9  * Created by Oren on 7/9/17.
10  */
11 @JsonIgnoreProperties(ignoreUnknown = true)
12
13 public class ServiceSubscriptions {
14
15     @JsonProperty("service-subscription")
16     public List<ServiceSubscription> serviceSubscription;
17 }