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

io.hcxprotocol.dto.HttpResponse Maven / Gradle / Ivy

Go to download

The SDK for HCX Participant System to help in integrating with HCX Gateway easily.

There is a newer version: 1.0.8
Show newest version
package io.hcxprotocol.dto;

/**
 * The HttpResponse class to capture the REST API status code and response body.
 */
public class HttpResponse {

    public int status;
    public String body;

    public HttpResponse(int status, String body) {
        this.status = status;
        this.body = body;
    }

    public int getStatus(){
        return this.status;
    }

    public String getBody(){
        return this.body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy