Merge "update spring version in MSOCommonBPMN"
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / ServiceInformationEntity.java
1 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 /**
6  * Created by 10112215 on 2017/9/20.
7  */
8 public class ServiceInformationEntity {
9     @JsonProperty("service-id")
10     private String serviceId;
11
12     @JsonProperty("subscription-service-type")
13     private String subscriptionServiceType;
14
15     @JsonProperty("ecomp-model-information")
16     private EcompModelInformationEntity ecompModelInformation;
17
18     @JsonProperty("service-instance-id")
19     private String serviceInstanceId;
20
21     @JsonProperty("global-customer-id")
22     private String globalCustomerId;
23
24     @JsonProperty("subscriber-name")
25     private String subscriberName;
26
27     public String getServiceId() {
28         return serviceId;
29     }
30
31     public void setServiceId(String serviceId) {
32         this.serviceId = serviceId;
33     }
34
35     public String getSubscriptionServiceType() {
36         return subscriptionServiceType;
37     }
38
39     public void setSubscriptionServiceType(String subscriptionServiceType) {
40         this.subscriptionServiceType = subscriptionServiceType;
41     }
42
43     public EcompModelInformationEntity getEcompModelInformation() {
44         return ecompModelInformation;
45     }
46
47     public void setEcompModelInformation(EcompModelInformationEntity ecompModelInformation) {
48         this.ecompModelInformation = ecompModelInformation;
49     }
50
51     public String getServiceInstanceId() {
52         return serviceInstanceId;
53     }
54
55     public void setServiceInstanceId(String serviceInstanceId) {
56         this.serviceInstanceId = serviceInstanceId;
57     }
58
59     public String getGlobalCustomerId() {
60         return globalCustomerId;
61     }
62
63     public void setGlobalCustomerId(String globalCustomerId) {
64         this.globalCustomerId = globalCustomerId;
65     }
66
67     public String getSubscriberName() {
68         return subscriberName;
69     }
70
71     public void setSubscriberName(String subscriberName) {
72         this.subscriberName = subscriberName;
73     }
74 }