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