Merge "Removed unused import"
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / RequestInformationEntity.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 /**
26  * Created by 10112215 on 2017/9/20.
27  */
28 public class RequestInformationEntity {
29     public String getRequestId() {
30         return requestId;
31     }
32
33     public void setRequestId(String requestId) {
34         this.requestId = requestId;
35     }
36
37     public String getRequestAction() {
38         return requestAction;
39     }
40
41     public void setRequestAction(String requestAction) {
42         this.requestAction = requestAction;
43     }
44
45     public String getSource() {
46         return source;
47     }
48
49     public void setSource(String source) {
50         this.source = source;
51     }
52
53     public String getNotificationUrl() {
54         return notificationUrl;
55     }
56
57     public void setNotificationUrl(String notificationUrl) {
58         this.notificationUrl = notificationUrl;
59     }
60
61     public String getOrderUnmber() {
62         return orderUnmber;
63     }
64
65     public void setOrderUnmber(String orderUnmber) {
66         this.orderUnmber = orderUnmber;
67     }
68
69     public String getOrerVersion() {
70         return orerVersion;
71     }
72
73     public void setOrerVersion(String orerVersion) {
74         this.orerVersion = orerVersion;
75     }
76
77     @JsonProperty("request-id")
78     private String requestId;
79
80     @JsonProperty("request-action")
81     private String requestAction;
82
83     @JsonProperty("source")
84     private String source;
85
86     @JsonProperty("notification-url")
87     private String notificationUrl;
88
89     @JsonProperty("order-number")
90     private String orderUnmber;
91
92     @JsonProperty("order-version")
93     private String orerVersion;
94 }