24a543c4f0ad6db1f9c3d62093afe3b553bb695a
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / sdncrest / RequestInformation.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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 package org.openecomp.mso.adapters.sdncrest;
21
22 import org.codehaus.jackson.annotate.JsonProperty;
23
24 import javax.xml.bind.annotation.XmlElement;
25 import java.io.Serializable;
26
27 /**
28  * Request Information specified by the SDNC "agnostic" API.
29  */
30 public class RequestInformation implements Serializable {
31         private static final long serialVersionUID = 1L;
32
33         // Identifies the transaction MSO has with the calling system.
34         private String requestId;
35
36         // Identifies the calling system, e.g. CCD.
37         private String source;
38
39         // The calling system's endpoint for receiving notifications from MSO.
40         private String notificationUrl;
41
42         // NOTE: these are defined in the SDNC AID, but not used by MSO:
43         //     request-action
44         //     request-sub-action
45
46         public RequestInformation(String requestId, String source, String notificationUrl) {
47                 this.requestId = requestId;
48                 this.source = source;
49                 this.notificationUrl = notificationUrl;
50         }
51
52         public RequestInformation() {
53         }
54
55         @JsonProperty("requestId")
56         @XmlElement(name = "requestId")
57         public String getRequestId() {
58                 return requestId;
59         }
60
61         @JsonProperty("requestId")
62         public void setRequestId(String requestId) {
63                 this.requestId = requestId;
64         }
65
66         @JsonProperty("source")
67         @XmlElement(name = "source")
68         public String getSource() {
69                 return source;
70         }
71
72         @JsonProperty("source")
73         public void setSource(String source) {
74                 this.source = source;
75         }
76
77         @JsonProperty("notificationUrl")
78         @XmlElement(name = "notificationUrl")
79         public String getNotificationUrl() {
80                 return notificationUrl;
81         }
82
83         @JsonProperty("notificationUrl")
84         public void setNotificationUrl(String notificationUrl) {
85                 this.notificationUrl = notificationUrl;
86         }
87 }