re base code
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / dao / neo4j / filters / RecursiveByRelationFilter.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.neo4j.filters;
22
23 import org.openecomp.sdc.be.dao.graph.datatype.GraphNode;
24 import org.openecomp.sdc.be.datatypes.enums.NodeTypeEnum;
25
26 public class RecursiveByRelationFilter extends RecursiveFilter {
27
28         private GraphNode node;
29         private String relationType;
30
31         public RecursiveByRelationFilter() {
32                 super();
33         }
34
35         public RecursiveByRelationFilter(NodeTypeEnum nodeType, GraphNode node) {
36                 super(nodeType);
37                 this.node = node;
38         }
39
40         public RecursiveByRelationFilter(NodeTypeEnum nodeType) {
41                 super(nodeType);
42         }
43
44         public RecursiveByRelationFilter(NodeTypeEnum nodeType, GraphNode node, String relationType) {
45                 super(nodeType);
46                 this.node = node;
47                 this.relationType = relationType;
48         }
49
50         public RecursiveByRelationFilter addNode(GraphNode node) {
51                 this.node = node;
52                 return this;
53         }
54
55         public RecursiveByRelationFilter addRelation(String relationType) {
56                 this.relationType = relationType;
57                 return this;
58         }
59
60         public GraphNode getNode() {
61                 return node;
62         }
63
64         public void setNode(GraphNode node) {
65                 this.node = node;
66         }
67
68         public String getRelationType() {
69                 return relationType;
70         }
71
72         public void setRelationType(String relationType) {
73                 this.relationType = relationType;
74         }
75
76         @Override
77         public String toString() {
78                 return "RecursiveByRelationFilter [node=" + node + ", relationType=" + relationType + "]";
79         }
80
81 }