Removed below sonar issues:
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / responseMessage / AAIResponseMessageDatum.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.responseMessage;
23
24 import javax.xml.bind.annotation.XmlAccessType;
25 import javax.xml.bind.annotation.XmlAccessorType;
26 import javax.xml.bind.annotation.XmlElement;
27 import javax.xml.bind.annotation.XmlRootElement;
28 import javax.xml.bind.annotation.XmlType;
29
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "", propOrder = {
32     "aaiResponseMessageDatumKey",
33     "aaiResponseMessageDatumValue",
34
35 })
36
37 @XmlRootElement(name = "aai-response-message-datum", namespace = "http://org.onap.aai.inventory")
38 public class AAIResponseMessageDatum {
39
40     @XmlElement(name = "aai-response-message-datum-key", required = true)
41     protected String aaiResponseMessageDatumKey;
42     @XmlElement(name = "aai-response-message-datum-value", required = true)
43     protected String aaiResponseMessageDatumValue;
44         
45         /**
46          * Gets the aai response message datum key.
47          *
48          * @return the aai response message datum key
49          */
50         public String getAaiResponseMessageDatumKey() {
51                 return aaiResponseMessageDatumKey;
52         }
53         
54         /**
55          * Sets the aai response message datum key.
56          *
57          * @param aaiResponseMessageDatumKey the new aai response message datum key
58          */
59         public void setAaiResponseMessageDatumKey(String aaiResponseMessageDatumKey) {
60                 this.aaiResponseMessageDatumKey = aaiResponseMessageDatumKey;
61         }
62         
63         /**
64          * Gets the aai response message datum value.
65          *
66          * @return the aai response message datum value
67          */
68         public String getAaiResponseMessageDatumValue() {
69                 return aaiResponseMessageDatumValue;
70         }
71         
72         /**
73          * Sets the aai response message datum value.
74          *
75          * @param aaiResponseMessageDatumValue the new aai response message datum value
76          */
77         public void setAaiResponseMessageDatumValue(String aaiResponseMessageDatumValue) {
78                 this.aaiResponseMessageDatumValue = aaiResponseMessageDatumValue;
79         }
80     
81     
82 }