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

com.yahoo.elide.core.HttpStatus Maven / Gradle / Ivy

There is a newer version: 7.1.4
Show newest version
/*
 * Copyright 2015, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.core;

/**
 * HTTP status codes.
 */
public class HttpStatus {

    public static final int SC_OK = 200;
    public static final int SC_CREATED = 201;
    public static final int SC_NO_CONTENT = 204;
    public static final int SC_BAD_REQUEST = 400;
    public static final int SC_FORBIDDEN = 403;
    public static final int SC_NOT_FOUND = 404;
    public static final int SC_LOCKED = 423;
    public static final int SC_INTERNAL_SERVER_ERROR = 500;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy