Update license and poms
[aai/sparky-be.git] / sparkybe-onap-service / src / main / java / org / onap / aai / sparky / viewandinspect / entity / GizmoRelationshipEntity.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
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 package org.onap.aai.sparky.viewandinspect.entity;
22
23 import java.util.Map;
24
25 public class GizmoRelationshipEntity {
26
27         /*
28          * {"id":"oe4ur-3a0-27th-fu8","type":"has","url":
29          * "services/inventory/relationships/v8/has/oe4ur-3a0-27th-fu8","source":
30          * "services/inventory/v8/generic-vnf/4248","target":
31          * "services/inventory/v8/vserver/20528",
32          * "properties":{"is-parent":"true","multiplicity":"many","has-del-target":
33          * "true","uses-resource": "true"}}
34          */
35
36         private String id;
37         private String type;
38         private String url;
39         private String source;
40         private String target;
41         private Map<String, String> properties;
42
43         public String getId() {
44                 return id;
45         }
46
47         public void setId(String id) {
48                 this.id = id;
49         }
50
51         public String getType() {
52                 return type;
53         }
54
55         public void setType(String type) {
56                 this.type = type;
57         }
58
59         public String getUrl() {
60                 return url;
61         }
62
63         public void setUrl(String url) {
64                 this.url = url;
65         }
66
67         public String getSource() {
68                 return source;
69         }
70
71         public void setSource(String source) {
72                 this.source = source;
73         }
74
75         public String getTarget() {
76                 return target;
77         }
78
79         public void setTarget(String target) {
80                 this.target = target;
81         }
82
83         public Map<String, String> getProperties() {
84                 return properties;
85         }
86
87         public void setProperties(Map<String, String> properties) {
88                 this.properties = properties;
89         }
90
91         @Override
92         public String toString() {
93                 return "GizmoRelationshipEntity [" + (id != null ? "id=" + id + ", " : "")
94                                 + (type != null ? "type=" + type + ", " : "") + (url != null ? "url=" + url + ", " : "")
95                                 + (source != null ? "source=" + source + ", " : "") + (target != null ? "target=" + target + ", " : "")
96                                 + (properties != null ? "properties=" + properties : "") + "]";
97         }
98
99 }