fun.langel.cql.dialect.ElasticSearchQDL Maven / Gradle / Ivy
The newest version!
package fun.langel.cql.dialect;
import fun.langel.cql.Language;
import org.elasticsearch.action.search.SearchRequest;
/**
* @author [email protected](GuHan)
* @since 2022/3/18 16:45
**/
public class ElasticSearchQDL implements Dialect {
private final SearchRequest content;
public ElasticSearchQDL(final SearchRequest content) {
this.content = content;
}
@Override
public Language type() {
return Language.ELASTIC_SEARCH;
}
@Override
public SearchRequest content() {
return this.content;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy