package org.atea.nlptools.macroniser.servlets;

public class HttpStatusCode
{
    /**
     * 400 Bad Request
     * The server could not understand the request due to invalid syntax.
     */
    public static final int BadRequest = 400;

    /**
     * 403 Forbidden
     * The client does not have access rights to the requested content.
     */
    public static final int Forbidden = 403;

    /**
     * 405 Method Not Allowed
     * The request method is known by the server but not supported by the target resource.
     */
    public static final int MethodNotAllowed = 405;

    /**
     * 413 Payload Too Large
     * The request is larger than limits defined by the server.
     */
    public static final int PayloadTooLarge = 413;

    /**
     * 415 Unsupported Media Type
     * The 
     */
    public static final int UnsupportedMediaType = 415;

    /**
     * 500 Internal Server Error
     * The server has encountered a situation that it does not know how to handle.
     */
    public static final int InternalServerError = 500;
}
