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

tech.kronicle.utils.HttpStatuses Maven / Gradle / Ivy

Go to download

Kronicle utils library that contains utility classes for use by Kronicle and its plugins

There is a newer version: 0.1.331
Show newest version
package tech.kronicle.utils;

public final class HttpStatuses {

    public static final int OK = 200;
    public static final int MOVED_PERMANENTLY = 301;
    public static final int FOUND = 302;
    public static final int SEE_OTHER = 303;
    public static final int NOT_MODIFIED = 304;
    public static final int NOT_FOUND = 404;
    public static final int FORBIDDEN = 403;
    public static final int INTERNAL_SERVER_ERROR = 500;

    private HttpStatuses() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy