Merge "Merge simulator from ECOMP's repository"
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / rest / RequestDetailsWrapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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 /*
22  * ============LICENSE_START==========================================
23  * ===================================================================
24  * Modifications Copyright (C) 2018 - 2019 Nokia. All rights reserved.
25  * ===================================================================
26  * Licensed under the Apache License, Version 2.0 (the "License");
27  * you may not use this file except in compliance with the License.
28  * You may obtain a copy of the License at
29  *
30  *        http://www.apache.org/licenses/LICENSE-2.0
31  *
32  * Unless required by applicable law or agreed to in writing, software
33  * distributed under the License is distributed on an "AS IS" BASIS,
34  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
35  * See the License for the specific language governing permissions and
36  * limitations under the License.
37  * ============LICENSE_END============================================
38  *
39  *
40  */
41 package org.onap.vid.mso.rest;
42
43 public final class RequestDetailsWrapper {
44
45     private final RequestDetails requestDetails;
46
47     public RequestDetailsWrapper(RequestDetails requestDetails) {
48         this.requestDetails = requestDetails;
49     }
50
51     public RequestDetails getRequestDetails() {
52         return requestDetails;
53     }
54 }