Update license files, sonar plugin and fix tests
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / domain / restPolicyException / RESTResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
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
21 package org.openecomp.aai.domain.restPolicyException;
22
23 import java.util.HashMap;
24 import java.util.Map;
25 import javax.annotation.Generated;
26 import com.fasterxml.jackson.annotation.JsonAnyGetter;
27 import com.fasterxml.jackson.annotation.JsonAnySetter;
28 import com.fasterxml.jackson.annotation.JsonIgnore;
29 import com.fasterxml.jackson.annotation.JsonInclude;
30 import com.fasterxml.jackson.annotation.JsonProperty;
31 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
32
33 @JsonInclude(JsonInclude.Include.NON_NULL)
34 @Generated("org.jsonschema2pojo")
35 @JsonPropertyOrder({
36     "requestError"
37 })
38 public class RESTResponse {
39
40     @JsonProperty("requestError")
41     private RequestError requestError;
42     @JsonIgnore
43     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
44
45     /**
46      * Gets the request error.
47      *
48      * @return     The requestError
49      */
50     @JsonProperty("requestError")
51     public RequestError getRequestError() {
52         return requestError;
53     }
54
55     /**
56      * Sets the request error.
57      *
58      * @param requestError     The requestError
59      */
60     @JsonProperty("requestError")
61     public void setRequestError(RequestError requestError) {
62         this.requestError = requestError;
63     }
64
65     /**
66      * Gets the additional properties.
67      *
68      * @return the additional properties
69      */
70     @JsonAnyGetter
71     public Map<String, Object> getAdditionalProperties() {
72         return this.additionalProperties;
73     }
74
75     /**
76      * Sets the additional property.
77      *
78      * @param name the name
79      * @param value the value
80      */
81     @JsonAnySetter
82     public void setAdditionalProperty(String name, Object value) {
83         this.additionalProperties.put(name, value);
84     }
85
86 }