Fix for Penetration test _ Session and cookie management
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / SimpleResult.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.aai.model;
22
23 import com.fasterxml.jackson.annotation.JsonAnySetter;
24 import com.fasterxml.jackson.annotation.JsonIgnore;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26
27 import java.util.HashMap;
28 import java.util.List;
29 import java.util.Map;
30
31 public class SimpleResult {
32     private String id;
33     private String nodeType;
34     private String url;
35     private Properties properties;
36     private List<RelatedTo> relatedTo = null;
37     @JsonIgnore
38     private Map<String, Object> additionalProperties = new HashMap<>();
39
40     public String getId() {
41         return id;
42     }
43
44     @JsonProperty("id")
45     public void setJsonId(String id) {
46         this.id = id;
47     }
48
49     public String getNodeType() {
50         return nodeType;
51     }
52
53     @JsonProperty("node-type")
54     public void setJsonNodeType(String nodeType) {
55         this.nodeType = nodeType;
56     }
57
58     public String getUrl() {
59         return url;
60     }
61
62     @JsonProperty("url")
63     public void setJsonUrl(String url) {
64         this.url = url;
65     }
66
67     public Properties getProperties() {
68         return properties;
69     }
70
71     @JsonProperty("properties")
72     public void setJsonProperties(Properties properties) {
73         this.properties = properties;
74     }
75
76     public List<RelatedTo> getRelatedTo() {
77         return relatedTo;
78     }
79
80     @JsonProperty("related-to")
81     public void setJsonRelatedTo(List<RelatedTo> relatedTo) {
82         this.relatedTo = relatedTo;
83     }
84
85     public Map<String, Object> getAdditionalProperties() {
86         return this.additionalProperties;
87     }
88
89     @JsonAnySetter
90     public void setJsonAdditionalProperty(String name, Object value) {
91         this.additionalProperties.put(name, value);
92     }
93 }