Merge "update spring version in MSOCommonBPMN"
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / RequestInformationEntity.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 RequestInformationEntity {
9     public String getRequestId() {
10         return requestId;
11     }
12
13     public void setRequestId(String requestId) {
14         this.requestId = requestId;
15     }
16
17     public String getRequestAction() {
18         return requestAction;
19     }
20
21     public void setRequestAction(String requestAction) {
22         this.requestAction = requestAction;
23     }
24
25     public String getSource() {
26         return source;
27     }
28
29     public void setSource(String source) {
30         this.source = source;
31     }
32
33     public String getNotificationUrl() {
34         return notificationUrl;
35     }
36
37     public void setNotificationUrl(String notificationUrl) {
38         this.notificationUrl = notificationUrl;
39     }
40
41     public String getOrderUnmber() {
42         return orderUnmber;
43     }
44
45     public void setOrderUnmber(String orderUnmber) {
46         this.orderUnmber = orderUnmber;
47     }
48
49     public String getOrerVersion() {
50         return orerVersion;
51     }
52
53     public void setOrerVersion(String orerVersion) {
54         this.orerVersion = orerVersion;
55     }
56
57     @JsonProperty("request-id")
58     private String requestId;
59
60     @JsonProperty("request-action")
61     private String requestAction;
62
63     @JsonProperty("source")
64     private String source;
65
66     @JsonProperty("notification-url")
67     private String notificationUrl;
68
69     @JsonProperty("order-number")
70     private String orderUnmber;
71
72     @JsonProperty("order-version")
73     private String orerVersion;
74 }