a6e81343ad46dbac2aa6b61fdb89b9931daa1e6b
[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         public String getIndex(String version) {
35                 return this.index + version;
36         }
37
38         public DatabaseInfo(String alias, String doctype, String mapping) {
39                 this(alias,alias,doctype,mapping);
40         }
41
42         public DatabaseInfo(String index,String alias, String doctype, String mapping) {
43                 this(index,alias,doctype, mapping,
44                                 "{\"index\":{\"number_of_shards\":%d,\"number_of_replicas\":%d},\"analysis\":{\"analyzer\":{\"content\":"
45                                                 + "{\"type\":\"custom\",\"tokenizer\":\"whitespace\"}}}}");
46         }
47
48         public DatabaseInfo(String index,String alias,String doctype, String mapping, String settingsformat) {
49                 this.index = index;
50                 this.alias = alias;
51                 this.doctype = doctype;
52                 this.mapping = mapping;
53                 this.settingsFormat = settingsformat;
54         }
55         
56         
57         public String getMapping() {
58                 return this.mapping==null?null:String.format("{\"%s\":{\"properties\":%s}}",this.doctype, this.mapping);
59         }
60         public String getSettings(int shards, int replicas) {
61                 return String.format(this.settingsFormat, shards, replicas);
62         }
63 }