All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sagacity.sqltoy.configure.Elastic Maven / Gradle / Ivy

There is a newer version: 5.6.34.jre8
Show newest version
/**
 * 
 */
package org.sagacity.sqltoy.configure;

import java.io.Serializable;
import java.util.List;

/**
 * @description 提供es基于http连接的配置,2021年开始有大量基于jdbc的模式,可不再使用
 * @author zhongxuchen
 * @version v1.0,Date:2020年2月20日
 */
public class Elastic implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = -7130685535362259100L;

	/**
	 * 使用时默认使用的es集群点
	 */
	private String defaultId;

	/**
	 * 多个es集群配置
	 */
	private List endpoints;

	public String getDefaultId() {
		return defaultId;
	}

	public void setDefaultId(String defaultId) {
		this.defaultId = defaultId;
	}

	public List getEndpoints() {
		return endpoints;
	}

	public void setEndpoints(List endpoints) {
		this.endpoints = endpoints;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy