Merge "Reorder modifiers"
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / ServiceInformationEntity.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 public class ServiceInformationEntity {
26     @JsonProperty("GENERIC-RESOURCE-API:service-id")
27     private String serviceId;
28
29     @JsonProperty("GENERIC-RESOURCE-API:subscription-service-type")
30     private String subscriptionServiceType;
31
32     @JsonProperty("GENERIC-RESOURCE-API:onap-model-information")
33     private OnapModelInformationEntity onapModelInformation;
34
35     @JsonProperty("GENERIC-RESOURCE-API:service-instance-id")
36     private String serviceInstanceId;
37
38     @JsonProperty("GENERIC-RESOURCE-API:global-customer-id")
39     private String globalCustomerId;
40
41     @JsonProperty("GENERIC-RESOURCE-API:subscriber-name")
42     private String subscriberName;
43
44     public String getServiceId() {
45         return serviceId;
46     }
47
48     public void setServiceId(String serviceId) {
49         this.serviceId = serviceId;
50     }
51
52     public String getSubscriptionServiceType() {
53         return subscriptionServiceType;
54     }
55
56     public void setSubscriptionServiceType(String subscriptionServiceType) {
57         this.subscriptionServiceType = subscriptionServiceType;
58     }
59
60     public OnapModelInformationEntity getOnapModelInformation() {
61         return onapModelInformation;
62     }
63
64     public void setOnapModelInformation(OnapModelInformationEntity onapModelInformation) {
65         this.onapModelInformation = onapModelInformation;
66     }
67
68     public String getServiceInstanceId() {
69         return serviceInstanceId;
70     }
71
72     public void setServiceInstanceId(String serviceInstanceId) {
73         this.serviceInstanceId = serviceInstanceId;
74     }
75
76     public String getGlobalCustomerId() {
77         return globalCustomerId;
78     }
79
80     public void setGlobalCustomerId(String globalCustomerId) {
81         this.globalCustomerId = globalCustomerId;
82     }
83
84     public String getSubscriberName() {
85         return subscriberName;
86     }
87
88     public void setSubscriberName(String subscriberName) {
89         this.subscriberName = subscriberName;
90     }
91 }