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

org.hibernate.search.elasticsearch.impl.ElasticsearchJsonQueryDescriptor Maven / Gradle / Ivy

/*
 * 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 org.hibernate.search.engine.integration.impl.ExtendedSearchIntegrator;
import org.hibernate.search.query.engine.spi.HSQuery;
import org.hibernate.search.query.engine.spi.QueryDescriptor;

import com.google.gson.JsonObject;

/**
 * A {@link QueryDescriptor} for an Elasticsearch query.
 *
 * @author Gunnar Morling
 */
public class ElasticsearchJsonQueryDescriptor implements QueryDescriptor {

	private final JsonObject jsonQuery;

	public ElasticsearchJsonQueryDescriptor(JsonObject jsonQuery) {
		this.jsonQuery = jsonQuery;
	}

	@Override
	public HSQuery createHSQuery(ExtendedSearchIntegrator extendedIntegrator) {
		return new ElasticsearchHSQueryImpl( jsonQuery, extendedIntegrator );
	}

	@Override
	public String toString() {
		return jsonQuery.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy