383202184b13497215b20bcfe808f97b408f8935
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / restServiceException / RequestError.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.restServiceException;
22
23 import com.fasterxml.jackson.annotation.JsonAnyGetter;
24 import com.fasterxml.jackson.annotation.JsonAnySetter;
25 import com.fasterxml.jackson.annotation.JsonIgnore;
26 import com.fasterxml.jackson.annotation.JsonInclude;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
29
30 import java.util.HashMap;
31 import java.util.Map;
32
33 import javax.annotation.Generated;
34
35 @JsonInclude(JsonInclude.Include.NON_NULL)
36 @Generated("org.jsonschema2pojo")
37 @JsonPropertyOrder({"serviceException"})
38 public class RequestError {
39
40     @JsonProperty("serviceException")
41     private ServiceException serviceException;
42     @JsonIgnore
43     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
44
45     /**
46      * Gets the service exception.
47      *
48      * @return The serviceException
49      */
50     @JsonProperty("serviceException")
51     public ServiceException getServiceException() {
52         return serviceException;
53     }
54
55     /**
56      * Sets the service exception.
57      *
58      * @param serviceException The serviceException
59      */
60     @JsonProperty("serviceException")
61     public void setServiceException(ServiceException serviceException) {
62         this.serviceException = serviceException;
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 }