[SDNC-30] summary
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / ccsdk / sli / adaptors / aai / query / NamedQuery.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 ONAP Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.ccsdk.sli.adaptors.aai.query;
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     "named-query-uuid"
38 })
39 public class NamedQuery {
40
41     @JsonProperty("named-query-uuid")
42     private String namedQueryUuid;
43     @JsonIgnore
44     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
45
46     /**
47      * 
48      * @return
49      *     The namedQueryUuid
50      */
51     @JsonProperty("named-query-uuid")
52     public String getNamedQueryUuid() {
53         return namedQueryUuid;
54     }
55
56     /**
57      * 
58      * @param namedQueryUuid
59      *     The named-query-uuid
60      */
61     @JsonProperty("named-query-uuid")
62     public void setNamedQueryUuid(String namedQueryUuid) {
63         this.namedQueryUuid = namedQueryUuid;
64     }
65
66     @JsonAnyGetter
67     public Map<String, Object> getAdditionalProperties() {
68         return this.additionalProperties;
69     }
70
71     @JsonAnySetter
72     public void setAdditionalProperty(String name, Object value) {
73         this.additionalProperties.put(name, value);
74     }
75
76 }