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

com.github.tomakehurst.wiremock.http.HttpStatus Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package com.github.tomakehurst.wiremock.http;

public class HttpStatus {

    public static boolean isSuccess(int code) {
        return ((200 <= code) && (code <= 299));
    }

    public static boolean isRedirection(int code) {
        return ((300 <= code) && (code <= 399));
    }

    public static boolean isClientError(int code) {
        return ((400 <= code) && (code <= 499));
    }

    public static boolean isServerError(int code) {
        return ((500 <= code) && (code <= 599));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy