Update sli-adaptor/aai-service package names
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / sli / adaptors / aai / data / v1507 / Relationship.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.data.v1507;
23
24 import java.util.ArrayList;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
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;
35
36 @JsonInclude(JsonInclude.Include.NON_NULL)
37 @Generated("org.jsonschema2pojo")
38 @JsonPropertyOrder({
39     "relatedTo",
40     "relatedLink",
41     "relationshipData",
42     "any"
43 })
44 public class Relationship {
45
46     @JsonProperty("relatedTo")
47     private String relatedTo;
48     @JsonProperty("relatedLink")
49     private String relatedLink;
50     @JsonProperty("relationshipData")
51     private List<RelationshipDatum> relationshipData = new ArrayList<RelationshipDatum>();
52     @JsonProperty("any")
53     private List<Object> any = new ArrayList<Object>();
54     @JsonIgnore
55     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
56
57     /**
58      * 
59      * @return
60      *     The relatedTo
61      */
62     @JsonProperty("relatedTo")
63     public String getRelatedTo() {
64         return relatedTo;
65     }
66
67     /**
68      * 
69      * @param relatedTo
70      *     The relatedTo
71      */
72     @JsonProperty("relatedTo")
73     public void setRelatedTo(String relatedTo) {
74         this.relatedTo = relatedTo;
75     }
76
77     /**
78      * 
79      * @return
80      *     The relatedLink
81      */
82     @JsonProperty("relatedLink")
83     public String getRelatedLink() {
84         return relatedLink;
85     }
86
87     /**
88      * 
89      * @param relatedLink
90      *     The relatedLink
91      */
92     @JsonProperty("relatedLink")
93     public void setRelatedLink(String relatedLink) {
94         this.relatedLink = relatedLink;
95     }
96
97     /**
98      * 
99      * @return
100      *     The relationshipData
101      */
102     @JsonProperty("relationshipData")
103     public List<RelationshipDatum> getRelationshipData() {
104         return relationshipData;
105     }
106
107     /**
108      * 
109      * @param relationshipData
110      *     The relationshipData
111      */
112     @JsonProperty("relationshipData")
113     public void setRelationshipData(List<RelationshipDatum> relationshipData) {
114         this.relationshipData = relationshipData;
115     }
116
117     /**
118      * 
119      * @return
120      *     The any
121      */
122     @JsonProperty("any")
123     public List<Object> getAny() {
124         return any;
125     }
126
127     /**
128      * 
129      * @param any
130      *     The any
131      */
132     @JsonProperty("any")
133     public void setAny(List<Object> any) {
134         this.any = any;
135     }
136
137     @JsonAnyGetter
138     public Map<String, Object> getAdditionalProperties() {
139         return this.additionalProperties;
140     }
141
142     @JsonAnySetter
143     public void setAdditionalProperty(String name, Object value) {
144         this.additionalProperties.put(name, value);
145     }
146
147 }