Third part of onap rename
[appc.git] / appc-dg / appc-dg-shared / appc-dg-aai / src / main / java / org / onap / appc / dg / aai / objects / Relationship.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.dg.aai.objects;
26
27 import java.util.HashMap;
28 import java.util.Map;
29
30
31 public class Relationship {
32
33     private String relatedTo;
34
35     private String relatedLink;
36
37     private Map<String,String> relationShipDataMap;
38
39     private Map<String,String> relatedProperties;
40
41     public Relationship(){
42         relationShipDataMap = new HashMap<>();
43         relatedProperties = new HashMap<>();
44     }
45
46     public String getRelatedTo() {
47         return relatedTo;
48     }
49
50     public String getRelatedLink() {
51         return relatedLink;
52     }
53
54     public Map<String, String> getRelationShipDataMap() {
55         return relationShipDataMap;
56     }
57
58     public Map<String, String> getRelatedProperties() {
59         return relatedProperties;
60     }
61
62     public void setRelatedTo(String relatedTo) {
63         this.relatedTo = relatedTo;
64     }
65
66     public void setRelatedLink(String relatedLink) {
67         this.relatedLink = relatedLink;
68     }
69 }