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