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

com.blossomproject.autoconfigure.core.elasticsearch.ElasticsearchProperties Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.blossomproject.autoconfigure.core.elasticsearch;

import java.util.HashMap;
import java.util.Map;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;

@ConfigurationProperties(prefix = "blossom.elasticsearch")
public class ElasticsearchProperties {

  private String clusterName = "elasticsearch";
  private String clusterNodes;
  private Map properties = new HashMap();

  public String getClusterName() {
    return this.clusterName;
  }

  public void setClusterName(String clusterName) {
    this.clusterName = clusterName;
  }

  public String getClusterNodes() {
    return this.clusterNodes;
  }

  public void setClusterNodes(String clusterNodes) {
    this.clusterNodes = clusterNodes;
  }

  public Map getProperties() {
    return this.properties;
  }

  public void setProperties(Map properties) {
    this.properties = properties;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy