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

org.restler.http.HttpStatus Maven / Gradle / Ivy

The newest version!
package org.restler.http;

public class HttpStatus {

    public final int code;
    public final String line;

    public HttpStatus(int code, String line) {
        this.code = code;
        this.line = line;
    }

    @Override public String toString() {
        return "HttpStatus{" +
                "code=" + code +
                ", line='" + line + '\'' +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy