re base code
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / dao / graph / datatype / GraphEdge.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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
21 package org.openecomp.sdc.be.dao.graph.datatype;
22
23 import org.openecomp.sdc.be.dao.neo4j.GraphEdgeLabels;
24
25 import java.util.Map;
26
27 public class GraphEdge {
28
29         private GraphEdgeLabels edgeType;
30
31         private Map<String, Object> properties;
32
33         public GraphEdge() {
34                 super();
35         }
36
37         public GraphEdge(GraphEdgeLabels edgeType, Map<String, Object> properties) {
38                 super();
39                 this.edgeType = edgeType;
40                 this.properties = properties;
41         }
42
43         public GraphEdgeLabels getEdgeType() {
44                 return edgeType;
45         }
46
47         public void setEdgeType(GraphEdgeLabels edgeType) {
48                 this.edgeType = edgeType;
49         }
50
51         public Map<String, Object> getProperties() {
52                 return properties;
53         }
54
55         public void setProperties(Map<String, Object> properties) {
56                 this.properties = properties;
57         }
58
59         @Override
60         public int hashCode() {
61                 final int prime = 31;
62                 int result = 1;
63                 result = prime * result + ((edgeType == null) ? 0 : edgeType.hashCode());
64                 result = prime * result + ((properties == null) ? 0 : properties.hashCode());
65                 return result;
66         }
67
68         @Override
69         public boolean equals(Object obj) {
70                 if (this == obj)
71                         return true;
72                 if (obj == null)
73                         return false;
74                 if (getClass() != obj.getClass())
75                         return false;
76                 GraphEdge other = (GraphEdge) obj;
77                 if (edgeType != other.edgeType)
78                         return false;
79                 if (properties == null) {
80                         if (other.properties != null)
81                                 return false;
82                 } else if (!properties.equals(other.properties))
83                         return false;
84                 return true;
85         }
86
87         @Override
88         public String toString() {
89                 return "GraphEdge [edgeType=" + edgeType + ", properties=" + properties + "]";
90         }
91
92 }