2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.adapters.sdncrest;
23 import java.io.Serializable;
24 import javax.xml.bind.annotation.XmlElement;
25 import com.fasterxml.jackson.annotation.JsonProperty;
28 * Request Information specified by the SDNC "agnostic" API.
30 public class RequestInformation implements Serializable {
31 private static final long serialVersionUID = 1L;
33 // Identifies the transaction MSO has with the calling system.
34 private String requestId;
36 // Identifies the calling system, e.g. CCD.
37 private String source;
39 // The calling system's endpoint for receiving notifications from MSO.
40 private String notificationUrl;
42 // NOTE: these are defined in the SDNC AID, but not used by MSO:
46 // Identifies the request action
47 private String requestAction;
49 // Identifies the request sub action
50 private String requestSubAction;
52 @JsonProperty("orderNumber")
53 @XmlElement(name = "orderNumber")
54 private String orderNumber;
56 @JsonProperty("orderVersion")
57 @XmlElement(name = "orderVersion")
58 private String orderVersion;
60 public RequestInformation(String requestId, String source, String notificationUrl) {
61 this.requestId = requestId;
63 this.notificationUrl = notificationUrl;
66 public RequestInformation() {}
68 @JsonProperty("requestId")
69 @XmlElement(name = "requestId")
70 public String getRequestId() {
74 @JsonProperty("requestId")
75 public void setRequestId(String requestId) {
76 this.requestId = requestId;
79 @JsonProperty("source")
80 @XmlElement(name = "source")
81 public String getSource() {
85 @JsonProperty("source")
86 public void setSource(String source) {
90 @JsonProperty("notificationUrl")
91 @XmlElement(name = "notificationUrl")
92 public String getNotificationUrl() {
93 return notificationUrl;
96 @JsonProperty("notificationUrl")
97 public void setNotificationUrl(String notificationUrl) {
98 this.notificationUrl = notificationUrl;
101 @JsonProperty("requestAction")
102 @XmlElement(name = "requestAction")
103 public String getRequestAction() {
104 return requestAction;
107 @JsonProperty("requestAction")
108 public void setRequestAction(String requestAction) {
109 this.requestAction = requestAction;
112 @JsonProperty("requestSubAction")
113 @XmlElement(name = "requestSubAction")
114 public String getRequestSubAction() {
115 return requestSubAction;
118 @JsonProperty("requestSubAction")
119 public void setRequestSubAction(String requestSubAction) {
120 this.requestSubAction = requestSubAction;
123 public String getOrderNumber() {
127 public void setOrderNumber(String orderNumber) {
128 this.orderNumber = orderNumber;
131 public String getOrderVersion() {
135 public void setOrderVersion(String orderVersion) {
136 this.orderVersion = orderVersion;