2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
\r
5 * in compliance with the License. You may obtain a copy of the License at
\r
7 * http://www.apache.org/licenses/LICENSE-2.0
\r
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
\r
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
\r
11 * or implied. See the License for the specific language governing permissions and limitations under
\r
15 package org.onap.ccsdk.config.data.adaptor.domain;
\r
17 import java.io.Serializable;
\r
19 public class ConfigPropertyMapData implements Serializable {
\r
20 private static final long serialVersionUID = 1L;
\r
22 private String referenceKey;
\r
23 private String referenceValue;
\r
25 public String getReferenceKey() {
\r
26 return referenceKey;
\r
29 public void setReferenceKey(String referenceKey) {
\r
30 this.referenceKey = referenceKey;
\r
33 public String getReferenceValue() {
\r
34 return referenceValue;
\r
37 public void setReferenceValue(String referenceValue) {
\r
38 this.referenceValue = referenceValue;
\r
42 public String toString() {
\r
43 return "ConfigPropertyMapData [referenceKey=" + referenceKey + ", referenceValue=" + referenceValue + "]";
\r