Merge "Reorder modifiers"
[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 public class RequestInformationEntity {
26     public String getRequestId() {
27         return requestId;
28     }
29
30     public void setRequestId(String requestId) {
31         this.requestId = requestId;
32     }
33
34     public String getRequestAction() {
35         return requestAction;
36     }
37
38     public void setRequestAction(String requestAction) {
39         this.requestAction = requestAction;
40     }
41
42     public String getSource() {
43         return source;
44     }
45
46     public void setSource(String source) {
47         this.source = source;
48     }
49
50     public String getNotificationUrl() {
51         return notificationUrl;
52     }
53
54     public void setNotificationUrl(String notificationUrl) {
55         this.notificationUrl = notificationUrl;
56     }
57
58     public String getOrderUnmber() {
59         return orderUnmber;
60     }
61
62     public void setOrderUnmber(String orderUnmber) {
63         this.orderUnmber = orderUnmber;
64     }
65
66     public String getOrerVersion() {
67         return orerVersion;
68     }
69
70     public void setOrerVersion(String orerVersion) {
71         this.orerVersion = orerVersion;
72     }
73
74     @JsonProperty("GENERIC-RESOURCE-API:request-id")
75     private String requestId;
76
77     @JsonProperty("GENERIC-RESOURCE-API:request-action")
78     private String requestAction;
79
80     @JsonProperty("GENERIC-RESOURCE-API:source")
81     private String source;
82
83     @JsonProperty("GENERIC-RESOURCE-API:notification-url")
84     private String notificationUrl;
85
86     @JsonProperty("GENERIC-RESOURCE-API:order-number")
87     private String orderUnmber;
88
89     @JsonProperty("GENERIC-RESOURCE-API:order-version")
90     private String orerVersion;
91 }