1a3dd00d352332156c7a7fd963d8560fc4e9cc62
[aai/search-data-service.git] / src / main / java / org / openecomp / sa / searchdbabstraction / elasticsearch / config / ElasticSearchConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.openecomp.sa.searchdbabstraction.elasticsearch.config;
24
25 import java.util.Properties;
26
27 public class ElasticSearchConfig {
28   private String ipAddress;
29   private String httpPort;
30   private String javaApiPort;
31   private String clusterName;
32
33   public static final String ES_CLUSTER_NAME = "es.cluster-name";
34   public static final String ES_IP_ADDRESS = "es.ip-address";
35   public static final String ES_HTTP_PORT = "es.http-port";
36
37   private static final String JAVA_API_PORT_DEFAULT = "9300";
38
39   public ElasticSearchConfig(Properties props) {
40
41     setClusterName(props.getProperty(ES_CLUSTER_NAME));
42     setIpAddress(props.getProperty(ES_IP_ADDRESS));
43     setHttpPort(props.getProperty(ES_HTTP_PORT));
44     setJavaApiPort(JAVA_API_PORT_DEFAULT);
45   }
46
47   public String getIpAddress() {
48     return ipAddress;
49   }
50
51   public void setIpAddress(String ipAddress) {
52     this.ipAddress = ipAddress;
53   }
54
55   public String getHttpPort() {
56     return httpPort;
57   }
58
59   public void setHttpPort(String httpPort) {
60     this.httpPort = httpPort;
61   }
62
63   public String getJavaApiPort() {
64     return javaApiPort;
65   }
66
67   public void setJavaApiPort(String javaApiPort) {
68     this.javaApiPort = javaApiPort;
69   }
70
71   public String getClusterName() {
72     return clusterName;
73   }
74
75   public void setClusterName(String clusterName) {
76     this.clusterName = clusterName;
77   }
78
79   @Override
80   public String toString() {
81     return "ElasticSearchConfig [ipAddress=" + ipAddress + ", httpPort=" + httpPort
82         + ", javaApiPort=" + javaApiPort + ", clusterName=" + clusterName + "]";
83   }
84
85 }