Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / main / java / org / onap / vid / changeManagement / RequestDetails.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 package org.onap.vid.changeManagement;
22
23 import com.fasterxml.jackson.annotation.*;
24
25 import java.util.List;
26
27 @JsonInclude(JsonInclude.Include.NON_NULL)
28 @JsonPropertyOrder({
29 "modelInfo",
30 "cloudConfiguration",
31 "requestInfo",
32 "requestParameters",
33 "vnfName",
34 "vnfInstanceId"
35 })
36 public class RequestDetails extends org.onap.vid.mso.rest.RequestDetails{
37
38         @JsonProperty("vnfName")
39     private String vnfName;
40         @JsonProperty("vnfInstanceId")
41     private String vnfInstanceId;
42
43         /** The related model list. */
44         @JsonProperty("relatedInstanceList")
45         public List<RelatedInstanceList> relatedInstList;
46
47         @JsonProperty("vnfName")
48         public String getVnfName() {
49                 return vnfName;
50         }
51
52         @JsonProperty("vnfName")
53         public void setVnfName(String vnfName) {
54                 this.vnfName = vnfName;
55         }
56         @JsonProperty("vnfInstanceId")
57         public String getVnfInstanceId() {
58                 return vnfInstanceId;
59         }
60
61         @JsonProperty("vnfInstanceId")
62         public void setVnfInstanceId(String vnfInstanceId) {
63                 this.vnfInstanceId = vnfInstanceId;
64         }
65
66         @JsonGetter
67         public List<RelatedInstanceList> getRelatedInstList() {
68                 return relatedInstList;
69         }
70
71         @JsonSetter
72         public void setRelatedInstList(List<RelatedInstanceList> relatedInstList) {
73                 this.relatedInstList = relatedInstList;
74         }
75
76         @Override
77         public boolean equals(Object other) {
78                 return super.equals(other);
79         }
80
81         @Override
82         public int hashCode() {
83                 return super.hashCode();
84         }
85 }