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