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

org.hibernate.search.elasticsearch.client.impl.Paths Maven / Gradle / Ivy

There is a newer version: 5.11.12.Final
Show newest version
/*
 * 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.client.impl;

/**
 * Useful paths to compose Elasticsearch URLs.
 */
public interface Paths {

	URLEncodedString _EXPLAIN = URLEncodedString.fromString( "_explain" );
	URLEncodedString _QUERY = URLEncodedString.fromString( "_query" );
	URLEncodedString _FLUSH = URLEncodedString.fromString( "_flush" );
	URLEncodedString _OPTIMIZE = URLEncodedString.fromString( "_optimize" );
	URLEncodedString _DELETE_BY_QUERY = URLEncodedString.fromString( "_delete_by_query" );
	URLEncodedString _FORCEMERGE = URLEncodedString.fromString( "_forcemerge" );
	URLEncodedString _COUNT = URLEncodedString.fromString( "_count" );
	URLEncodedString _CLOSE = URLEncodedString.fromString( "_close" );
	URLEncodedString _SETTINGS = URLEncodedString.fromString( "_settings" );
	URLEncodedString _OPEN = URLEncodedString.fromString( "_open" );
	URLEncodedString _MAPPING = URLEncodedString.fromString( "_mapping" );
	URLEncodedString _REFRESH = URLEncodedString.fromString( "_refresh" );
	URLEncodedString _SEARCH = URLEncodedString.fromString( "_search" );
	URLEncodedString _TEMPLATE = URLEncodedString.fromString( "_template" );
	URLEncodedString _CLUSTER = URLEncodedString.fromString( "_cluster" );
	URLEncodedString _BULK = URLEncodedString.fromString( "_bulk" );

	URLEncodedString SCROLL = URLEncodedString.fromString( "scroll" );
	URLEncodedString HEALTH = URLEncodedString.fromString( "health" );

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy