Initial commit with all the necessary files
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / domain / restPolicyException / RequestError.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     "policyException"
37 })
38 public class RequestError {
39
40     @JsonProperty("policyException")
41     private PolicyException policyException;
42     @JsonIgnore
43     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
44
45     /**
46      * Gets the policy exception.
47      *
48      * @return     The policyException
49      */
50     @JsonProperty("policyException")
51     public PolicyException getPolicyException() {
52         return policyException;
53     }
54
55     /**
56      * Sets the policy exception.
57      *
58      * @param policyException     The policyException
59      */
60     @JsonProperty("policyException")
61     public void setPolicyException(PolicyException policyException) {
62         this.policyException = policyException;
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 }
87