184f412adb1724c6b659dba32bde3fb92b2b95e7
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / __.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.so.client.graphinventory.entities;
22
23 import org.onap.so.client.graphinventory.GraphInventoryObjectName;
24
25 public class __ {
26
27         protected __() {
28                 
29         }
30         
31         public static <A> DSLQueryBuilder<A, A> identity() {
32                 return new DSLQueryBuilder<>();
33         }
34         public static <A> DSLQueryBuilder<A, A> start(DSLNode node) {
35                 return new DSLQueryBuilder<>(node);
36         }
37         public static DSLQueryBuilder<DSLNode, DSLNode> node(GraphInventoryObjectName name) {
38                 
39                 return __.<DSLNode>start(new DSLNode(name));
40         }
41         
42         public static DSLQueryBuilder<DSLNode, DSLNode> node(GraphInventoryObjectName name, DSLNodeKey... key) {
43                 return __.<DSLNode>start(new DSLNode(name, key));
44         }
45         
46         public static DSLNodeKey key(String keyName, String... value) {
47                 return new DSLNodeKey(keyName, value);
48         }
49         
50         public static <A, B> DSLQueryBuilder<A, B> union(final DSLQueryBuilder<?, B>... traversal) {
51                 
52                 return __.<A>identity().union(traversal);
53         }
54         
55 public static <A> DSLQueryBuilder<A, A> where(DSLQueryBuilder<A, A> traversal) {
56                 
57                 return __.<A>identity().where(traversal);
58         }
59 }