org.hibernate.search.elasticsearch.impl.ElasticsearchIndexNameNormalizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-elasticsearch Show documentation
Show all versions of hibernate-search-elasticsearch Show documentation
Hibernate Search backend which has indexing operations forwarded to Elasticsearch
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.elasticsearch.impl;
import java.util.Locale;
import org.hibernate.search.elasticsearch.client.impl.URLEncodedString;
import org.hibernate.search.elasticsearch.logging.impl.Log;
import org.hibernate.search.util.logging.impl.LoggerFactory;
import java.lang.invoke.MethodHandles;
/**
* Applies rules imposed by Elasticsearch to index names.
*
* @author Gunnar Morling
*/
public class ElasticsearchIndexNameNormalizer {
private static final Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() );
private ElasticsearchIndexNameNormalizer() {
}
public static URLEncodedString getElasticsearchIndexName(String indexName) {
String esIndexName = indexName.toLowerCase( Locale.ENGLISH );
if ( !esIndexName.equals( indexName ) ) {
LOG.debugf( "Normalizing index name from '%1$s' to '%2$s'", indexName, esIndexName );
}
return URLEncodedString.fromString( esIndexName );
}
}