Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / DSLNodeKey.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 com.google.common.base.Joiner;
28
29
30 public class DSLNodeKey implements QueryStep {
31
32     private boolean not = false;
33     private final StringBuilder query = new StringBuilder();
34     private final String keyName;
35     private final List<String> values;
36
37     public DSLNodeKey(String keyName, String... value) {
38
39         this.keyName = keyName;
40         this.values = Arrays.asList(value);
41     }
42
43     public DSLNodeKey not() {
44
45         this.not = true;
46         return this;
47     }
48
49     @Override
50     public String build() {
51         StringBuilder result = new StringBuilder(query);
52
53         if (not) {
54             result.append(" !");
55         }
56         result.append("('").append(keyName).append("', ");
57         List<String> temp = new ArrayList<>();
58         for (String item : values) {
59             if (item.equals("null")) {
60                 temp.add(String.format("' %s '", item));
61             } else if (item.equals("")) {
62                 temp.add("' '");
63             } else {
64                 temp.add(String.format("'%s'", item));
65             }
66         }
67         result.append(Joiner.on(", ").join(temp)).append(")");
68
69         return result.toString();
70     }
71 }