211efa52eaa25db341c6d02597bedbd4db7760f2
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / viewandinspect / entity / GizmoEntity.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.viewandinspect.entity;
24
25 import java.util.Arrays;
26 import java.util.Map;
27
28 public class GizmoEntity {
29
30   private String id;
31   private String type;
32   private String url;
33   private Map<String, String> properties;
34   private GizmoRelationshipHint[] in;
35   private GizmoRelationshipHint[] out;
36
37   public String getId() {
38     return id;
39   }
40
41   public void setId(String id) {
42     this.id = id;
43   }
44
45   public String getType() {
46     return type;
47   }
48
49   public void setType(String type) {
50     this.type = type;
51   }
52
53   public String getUrl() {
54     return url;
55   }
56
57   public void setUrl(String url) {
58     this.url = url;
59   }
60
61   public Map<String, String> getProperties() {
62     return properties;
63   }
64
65   public void setProperties(Map<String, String> properties) {
66     this.properties = properties;
67   }
68
69   public GizmoRelationshipHint[] getIn() {
70     return in;
71   }
72
73   public void setIn(GizmoRelationshipHint[] in) {
74     this.in = in;
75   }
76
77   public GizmoRelationshipHint[] getOut() {
78     return out;
79   }
80
81   public void setOut(GizmoRelationshipHint[] out) {
82     this.out = out;
83   }
84
85   @Override
86   public String toString() {
87     return "GizmoEntity [" + (id != null ? "id=" + id + ", " : "")
88         + (type != null ? "type=" + type + ", " : "") + (url != null ? "url=" + url + ", " : "")
89         + (properties != null ? "properties=" + properties + ", " : "")
90         + (in != null ? "in=" + Arrays.toString(in) + ", " : "")
91         + (out != null ? "out=" + Arrays.toString(out) : "") + "]";
92   }
93
94
95
96 }