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

io.github.jpmorganchase.fusion.http.HttpResponse Maven / Gradle / Ivy

package io.github.jpmorganchase.fusion.http;

import java.util.List;
import java.util.Map;
import lombok.Builder;
import lombok.Value;

@Value
@Builder
public class HttpResponse {

    int statusCode;
    Map> headers;
    T body;

    public boolean isError() {
        return statusCode >= 400;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy