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