82aa7443333ed6aaa394309e364a08d8a580ded6
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / serialization / tinkerpop / TreeBackedEdge.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.serialization.tinkerpop;
23
24 import org.apache.tinkerpop.gremlin.structure.Direction;
25 import org.apache.tinkerpop.gremlin.structure.Edge;
26 import org.apache.tinkerpop.gremlin.structure.Graph;
27 import org.apache.tinkerpop.gremlin.structure.Vertex;
28 import org.apache.tinkerpop.gremlin.structure.util.detached.DetachedEdge;
29 import org.apache.tinkerpop.gremlin.util.iterator.IteratorUtils;
30
31 import java.util.Iterator;
32
33
34 /**
35  * Represents a {@link Edge} that is disconnected from a {@link Graph} however, 
36  * traversals are supported as they are backed by a Tree with saturated {@link Vertex} and {@link Edge} objects.
37  * These objects are not mutable and can only be used to read information out.
38  *
39  */
40 public class TreeBackedEdge extends DetachedEdge implements Edge {
41
42         private static final long serialVersionUID = 5419650145562077538L;
43         private TreeBackedVertex inVertex;
44         private TreeBackedVertex outVertex;
45         public TreeBackedEdge(Edge edge, TreeBackedVertex inVertex, TreeBackedVertex outVertex) {
46                 super(edge, true);
47                 this.inVertex = inVertex;
48                 this.outVertex = outVertex;
49         }
50         
51         @Override
52         public Vertex inVertex() {
53                 return this.inVertex;
54         }
55         
56         @Override
57         public Vertex outVertex() {
58                 return this.outVertex;
59         }
60         
61         @Override
62         public Iterator<Vertex> bothVertices() {
63                 return this.vertices(Direction.BOTH);
64         }
65         
66         @Override
67         public Iterator<Vertex> vertices(Direction direction) {
68                  switch (direction) {
69          case OUT:
70              return IteratorUtils.of(this.outVertex);
71          case IN:
72              return IteratorUtils.of(this.inVertex);
73          default:
74              return IteratorUtils.of(this.outVertex, this.inVertex);
75      }
76         }
77
78
79         
80
81 }