org.elasticsearch.index.rankeval.RankEvalRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rank-eval-client Show documentation
Show all versions of rank-eval-client Show documentation
The Rank Eval module adds APIs to evaluate ranking quality.
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.index.rankeval;
import org.elasticsearch.action.ActionRequestBuilder;
import org.elasticsearch.action.ActionType;
import org.elasticsearch.client.ElasticsearchClient;
public class RankEvalRequestBuilder extends ActionRequestBuilder {
public RankEvalRequestBuilder(ElasticsearchClient client, ActionType action, RankEvalRequest request) {
super(client, action, request);
}
@Override
public RankEvalRequest request() {
return request;
}
public void setRankEvalSpec(RankEvalSpec spec) {
this.request.setRankEvalSpec(spec);
}
public RankEvalSpec getRankEvalSpec() {
return this.request.getRankEvalSpec();
}
}