PortalRestApiCentralServiceImpl- Add null test before using nullable values
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / info / Relationship.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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 package org.openecomp.sdc.be.info;
21
22 import com.fasterxml.jackson.annotation.JsonProperty;
23 import java.util.ArrayList;
24 import java.util.List;
25 import lombok.AccessLevel;
26 import lombok.Getter;
27 import lombok.Setter;
28
29 @Getter
30 @Setter
31 public final class Relationship {
32
33     @JsonProperty("related-to")
34     private String relatedTo;
35     @JsonProperty(value = "relationship-label")
36     private String relationshipLabel;
37     @JsonProperty(value = "related-link", required = false)
38     private String relatedLink;
39     @JsonProperty("relationship-data")
40     @Getter(AccessLevel.NONE)
41     private List<RelationshipData> relationshipData;
42     @JsonProperty("related-to-property")
43     @Getter(AccessLevel.NONE)
44     private List<RelatedToProperty> relatedToProperty;
45
46     public List<RelationshipData> getRelationshipData() {
47         if (relationshipData == null) {
48             relationshipData = new ArrayList<>();
49         }
50         return relationshipData;
51     }
52
53     public List<RelatedToProperty> getRelatedToProperty() {
54         if (relatedToProperty == null) {
55             relatedToProperty = new ArrayList<>();
56         }
57         return relatedToProperty;
58     }
59 }