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

com.hashicorp.nomad.javasdk.EvaluationResponse Maven / Gradle / Ivy

There is a newer version: 0.11.3.0
Show newest version
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