com.hashicorp.nomad.javasdk.EvaluationResponse Maven / Gradle / Ivy
package com.hashicorp.nomad.javasdk;
import org.apache.http.HttpResponse;
/**
* Response from a request to a Nomad API that results in a new evaluation.
*
* @see Nomad Glossary definition of "evaluation"
*/
public class EvaluationResponse extends ServerResponse {
/**
* Creates a new EvaluationResponse.
*
* @param httpResponse the underlying HTTP response
* @param rawEntity the unparsed HTTP response entity (body)
* @param evaluationId the evaluation ID parsed from the response
*/
public EvaluationResponse(HttpResponse httpResponse, String rawEntity, String evaluationId) {
super(httpResponse, rawEntity, evaluationId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy