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

com.quali.cloudshell.RestResponse Maven / Gradle / Ivy

There is a newer version: 1.3.0.4
Show newest version
package com.quali.cloudshell;

public class RestResponse
{
    private String content;
    private int httpCode;

    public RestResponse(String content, int exitCode) {
        this.content = content;
        this.httpCode = exitCode;
    }

    public String getContent() {
        return content;
    }

    public int getHttpCode() {
        return httpCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy