/******************************************************************************* * Copyright (c) 2012-2015 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; /** * Created by The eXo Platform SARL .<br/> * HTTP status * * @author Gennady Azarenkov * @version $Id: $ */ public interface HTTPStatus { /** HTTP Status-Code 202: Accepted. */ public static final int ACCEPTED = 202; /** HTTP Status-Code 502: Bad Gateway. */ public static final int BAD_GATEWAY = 502; /** HTTP Status-Code 405: Method Not Allowed. */ public static final int BAD_METHOD = 405; /** HTTP Status-Code 400: Bad Request. */ public static final int BAD_REQUEST = 400; /** HTTP Status-Code 408: Request Time-Out. */ public static final int CLIENT_TIMEOUT = 408; /** HTTP Status-Code 409: Conflict. */ public static final int CONFLICT = 409; /** HTTP Status-Code 201: Created. */ public static final int CREATED = 201; /** HTTP Status-Code 413: Request Entity Too Large. */ public static final int ENTITY_TOO_LARGE = 413; /** HTTP Status-Code 403: Forbidden. */ public static final int FORBIDDEN = 403; /** HTTP Status-Code 504: Gateway Timeout. */ public static final int GATEWAY_TIMEOUT = 504; /** HTTP Status-Code 410: Gone. */ public static final int GONE = 410; /** HTTP Status-Code 500: Internal Server Error. */ public static final int INTERNAL_ERROR = 500; /** HTTP Status-Code 411: Length Required. */ public static final int LENGTH_REQUIRED = 411; /** HTTP Status-Code 301: Moved Permanently. */ public static final int MOVED_PERM = 301; /** HTTP Status-Code 302: Temporary Redirect. */ public static final int FOUND = 302; /** HTTP Status-Code 300: Multiple Choices. */ public static final int MULT_CHOICE = 300; /** HTTP Status-Code 204: No Content. */ public static final int NO_CONTENT = 204; /** HTTP Status-Code 406: Not Acceptable. */ public static final int NOT_ACCEPTABLE = 406; /** HTTP Status-Code 203: Non-Authoritative Information. */ public static final int NOT_AUTHORITATIVE = 203; /** HTTP Status-Code 404: Not Found. */ public static final int NOT_FOUND = 404; /** HTTP Status-Code 501: Not Implemented. */ public static final int NOT_IMPLEMENTED = 501; /** HTTP Status-Code 304: Not Modified. */ public static final int NOT_MODIFIED = 304; /** HTTP Status-Code 200: OK. */ public static final int OK = 200; /** HTTP Status-Code 206: Partial Content. */ public static final int PARTIAL = 206; /** HTTP Status-Code 402: Payment Required. */ public static final int PAYMENT_REQUIRED = 402; /** HTTP Status-Code 412: Precondition Failed. */ public static final int PRECON_FAILED = 412; /** HTTP Status-Code 407: Proxy Authentication Required. */ public static final int PROXY_AUTH = 407; /** HTTP Status-Code 414: Request-URI Too Large. */ public static final int REQ_TOO_LONG = 414; /** HTTP Status-Code 205: Reset Content. */ public static final int RESET = 205; /** HTTP Status-Code 303: See Other. */ public static final int SEE_OTHER = 303; /** HTTP Status-Code 307: Temporary Redirect. */ public static final int TEMP_REDIRECT = 307; /** HTTP Status-Code 401: Unauthorized. */ public static final int UNAUTHORIZED = 401; /** HTTP Status-Code 503: Service Unavailable. */ public static final int UNAVAILABLE = 503; /** HTTP Status-Code 415: Unsupported Media Type. */ public static final int UNSUPPORTED_TYPE = 415; /** HTTP Status-Code 305: Use Proxy. */ public static final int USE_PROXY = 305; /** HTTP Status-Code 505: HTTP Version Not Supported. */ public static final int VERSION = 505; /** * HTTP/1.1 Status 423 "Locked" code extensions. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.4 for more information. */ public static final int LOCKED = 423; /** * HTTP/1.1 Status 207 "Multistatus" code extensions. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.2 for more information. */ public static final int MULTISTATUS = 207; /** * HTTP/1.1 Status 405 "Method Not Allowed" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.4 for more information. */ public static final int METHOD_NOT_ALLOWED = 405; /** * HTTP/1.1 Status 416 "Requested Range Not Satisfiable" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.4 for more information. */ public static final int REQUESTED_RANGE_NOT_SATISFIABLE = 416; /** * HTTP/1.1 Status 100 "Continue" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.1 for more information. */ public static final int CONTINUE = 100; /** * HTTP/1.1 Status 101 "Switching Protocols" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.1 for more information. */ public static final int SWITCHING_PROTOCOLS = 101; /** * HTTP/1.1 Status 408 "Request Timeout" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.4 for more information. */ public static final int REQUEST_TIMEOUT = 408; /** * HTTP/1.1 Status 414 "Request-URI Too Long" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.4 for more information. */ public static final int REQUEST_URI_TOO_LONG = 414; /** * HTTP/1.1 Status 417 "Expectation Failed" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.4 for more information. */ public static final int EXPECTATION_FAILED = 417; /** * HTTP/1.1 Status 505 "HTTP Version Not Supported" code. See <a * href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html'> HTTP/1.1 * Status Code Definitions </a> section 10.5 for more information. */ public static final int HTTP_VERSION_NOT_SUPPORTED = 505; }