2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
 
   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
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  22 package org.onap.ccsdk.sli.adaptors.aai.data.v1507;
 
  24 import java.util.ArrayList;
 
  25 import java.util.HashMap;
 
  26 import java.util.List;
 
  28 import javax.annotation.Generated;
 
  29 import com.fasterxml.jackson.annotation.JsonAnyGetter;
 
  30 import com.fasterxml.jackson.annotation.JsonAnySetter;
 
  31 import com.fasterxml.jackson.annotation.JsonIgnore;
 
  32 import com.fasterxml.jackson.annotation.JsonInclude;
 
  33 import com.fasterxml.jackson.annotation.JsonProperty;
 
  34 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
  36 @JsonInclude(JsonInclude.Include.NON_NULL)
 
  37 @Generated("org.jsonschema2pojo")
 
  43 public class RelationshipDatum {
 
  45     @JsonProperty("relationshipKey")
 
  46     private String relationshipKey;
 
  47     @JsonProperty("relationshipValue")
 
  48     private String relationshipValue;
 
  50     private List<Object> any = new ArrayList<Object>();
 
  52     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
 
  59     @JsonProperty("relationshipKey")
 
  60     public String getRelationshipKey() {
 
  61         return relationshipKey;
 
  66      * @param relationshipKey
 
  69     @JsonProperty("relationshipKey")
 
  70     public void setRelationshipKey(String relationshipKey) {
 
  71         this.relationshipKey = relationshipKey;
 
  77      *     The relationshipValue
 
  79     @JsonProperty("relationshipValue")
 
  80     public String getRelationshipValue() {
 
  81         return relationshipValue;
 
  86      * @param relationshipValue
 
  87      *     The relationshipValue
 
  89     @JsonProperty("relationshipValue")
 
  90     public void setRelationshipValue(String relationshipValue) {
 
  91         this.relationshipValue = relationshipValue;
 
 100     public List<Object> getAny() {
 
 110     public void setAny(List<Object> any) {
 
 115     public Map<String, Object> getAdditionalProperties() {
 
 116         return this.additionalProperties;
 
 120     public void setAdditionalProperty(String name, Object value) {
 
 121         this.additionalProperties.put(name, value);