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

org.kgrid.adapter.api.ExecutorResponse Maven / Gradle / Ivy

The newest version!
package org.kgrid.adapter.api;

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

public class ExecutorResponse {

    private final Object body;
    private final Map> headers;
    private final ClientRequest clientRequest;

    public Object getBody() {
        return body;
    }

    public Map> getHeaders() {
        return headers;
    }

    public ClientRequest getClientRequest() {
        return clientRequest;
    }

    public ExecutorResponse(Object body, Map> headers, ClientRequest clientRequest) {
        this.body = body;
        this.headers = headers;
        this.clientRequest = clientRequest;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy