Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / DSLNode.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 java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.List;
26 import org.onap.so.client.aai.entities.QueryStep;
27 import org.onap.so.client.graphinventory.GraphInventoryObjectName;
28
29 public class DSLNode implements QueryStep {
30
31     private final String nodeName;
32     private final List<DSLNodeKey> nodeKeys;
33     private final StringBuilder query = new StringBuilder();
34     private boolean output = false;
35
36     public DSLNode() {
37         this.nodeName = "";
38         this.nodeKeys = new ArrayList<>();
39
40     }
41
42     public DSLNode(GraphInventoryObjectName name) {
43         this.nodeName = name.typeName();
44         this.nodeKeys = new ArrayList<>();
45         query.append(nodeName);
46     }
47
48     public DSLNode(GraphInventoryObjectName name, DSLNodeKey... key) {
49         this.nodeName = name.typeName();
50         this.nodeKeys = Arrays.asList(key);
51         query.append(nodeName);
52     }
53
54     public DSLNode output() {
55         this.output = true;
56
57         return this;
58     }
59
60     public DSLNode and(DSLNodeKey... key) {
61         this.nodeKeys.addAll(Arrays.asList(key));
62
63         return this;
64     }
65
66     @Override
67     public String build() {
68         StringBuilder result = new StringBuilder(query);
69         if (output) {
70             result.append("*");
71         }
72         for (DSLNodeKey key : nodeKeys) {
73             result.append(key.build());
74         }
75
76         return result.toString();
77     }
78 }