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

com.github.jobservice.job.client.ApiResponse Maven / Gradle / Ivy

The newest version!
/*
 * Job Service
 * Allows background operations to be sent to the workers, and for the operations to be tracked and controlled.  You can check the progress of operations, and request to cancel, pause, or resume them.  The primary use of this functionality is batch document processing.  The service can send work to the Batch Worker, and then track the progress of that work. 
 *
 * The version of the OpenAPI document: 1.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.github.jobservice.job.client;

import java.util.List;
import java.util.Map;

/**
 * API response returned by API call.
 *
 * @param  The type of data that is deserialized from response body
 */
public class ApiResponse {
    private final int statusCode;
    private final Map> headers;
    private final T data;

    /**
     * @param statusCode The status code of HTTP response
     * @param headers The headers of HTTP response
     */
    public ApiResponse(int statusCode, Map> headers) {
        this(statusCode, headers, null);
    }

    /**
     * @param statusCode The status code of HTTP response
     * @param headers The headers of HTTP response
     * @param data The object deserialized from response bod
     */
    public ApiResponse(int statusCode, Map> headers, T data) {
        this.statusCode = statusCode;
        this.headers = headers;
        this.data = data;
    }

    /**
     * Get the status code
     *
     * @return status code
     */
    public int getStatusCode() {
        return statusCode;
    }

    /**
     * Get the headers
     *
     * @return map of headers
     */
    public Map> getHeaders() {
        return headers;
    }

    /**
     * Get the data
     *
     * @return data
     */
    public T getData() {
        return data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy