4d82a090173a93b79fc358365f6f344072b28cb8
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.dataprovider.setup.data;
23
24 /**
25  * @author Michael Dürre
26  *
27  */
28 public class DatabaseInfo {
29         public final String doctype;
30         public final String alias;
31         private final String mapping;
32         private final String settingsFormat;
33         private final String index;
34
35         public String getIndex(String version) {
36                 return this.index + version;
37         }
38
39         public DatabaseInfo(String alias, String doctype, String mapping) {
40                 this(alias, alias, doctype, mapping);
41         }
42
43         public DatabaseInfo(String index, String alias, String doctype, String mapping) {
44                 this(index, alias, doctype, mapping,
45                                 "{\"index\":{\"number_of_shards\":%d,\"number_of_replicas\":%d},\"analysis\":{\"analyzer\":{\"content\":"
46                                                 + "{\"type\":\"custom\",\"tokenizer\":\"whitespace\"}}}}");
47         }
48
49         public DatabaseInfo(String index, String alias, String doctype, String mapping, String settingsformat) {
50                 this.index = index;
51                 this.alias = alias;
52                 this.doctype = doctype;
53                 this.mapping = mapping;
54                 this.settingsFormat = settingsformat;
55         }
56         
57         public String getMapping() {
58                 return this.getMapping(false);
59         }
60         public String getMapping(boolean useStrict) {
61                 return this.mapping == null ? null
62                                 : String.format("{\"%s\":{%s\"properties\":%s}}", this.doctype,useStrict?"\"dynamic\": \"strict\",":"", this.mapping);
63         }
64
65         public String getSettings(int shards, int replicas) {
66                 return String.format(this.settingsFormat, shards, replicas);
67         }
68 }