package pl.allegro.tech.search.elasticsearch.tools.reindex.connection;
public class ElasticAddress {
private String host;
private String indexName;
private String typeName;
private int port;
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public String getIndexName() {
return indexName;
}
public void setIndexName(String indexName) {
this.indexName = indexName;
}
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
}