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

com.yoti.api.client.spi.remote.call.SignedRequestResponse Maven / Gradle / Ivy

The newest version!
package com.yoti.api.client.spi.remote.call;

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

public class SignedRequestResponse {

    private final int responseCode;
    private final byte[] responseBody;
    private final Map> responseHeaders;

    public SignedRequestResponse(int responseCode, byte[] responseBody, Map> responseHeaders) {
        this.responseCode = responseCode;
        this.responseBody = responseBody.clone();
        this.responseHeaders = responseHeaders;
    }

    public int getResponseCode() {
        return responseCode;
    }

    public byte[] getResponseBody() {
        return responseBody;
    }

    public Map> getResponseHeaders() {
        return responseHeaders;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy