Adding interfaces in documentation
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / viewandinspect / entity / GizmoRelationshipHint.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 public class GizmoRelationshipHint {
24
25           private String id;
26           private String type;
27           private String url;
28           private String source;
29           private String target;
30
31           public String getId() {
32             return id;
33           }
34
35           public void setId(String id) {
36             this.id = id;
37           }
38
39           public String getType() {
40             return type;
41           }
42
43           public void setType(String type) {
44             this.type = type;
45           }
46
47           public String getUrl() {
48             return url;
49           }
50
51           public void setUrl(String url) {
52             this.url = url;
53           }
54
55           public String getSource() {
56             return source;
57           }
58
59           public void setSource(String source) {
60             this.source = source;
61           }
62
63           public String getTarget() {
64             return target;
65           }
66
67           public void setTarget(String target) {
68             this.target = target;
69           }
70
71
72
73         }