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

com.stuart.stuartclientjava.infrastructure.ApiResponse Maven / Gradle / Ivy

package com.stuart.stuartclientjava.infrastructure;

public class ApiResponse {

    private final int statusCode;
    private final String body;

    public ApiResponse(int statusCode, String body) {
        this.statusCode = statusCode;
        this.body = body;
    }

    public String getBody() {
        return body;
    }

    public int getStatusCode() {
        return statusCode;
    }

    public boolean isSuccessfull() {
        return statusCode == 200 || statusCode == 201;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy