source: gs3-extensions/atea-nlp-tools/trunk/src/ocr/src/main/java/org/atea/nlptools/ocr/abstractions/objects/HttpStatusCode.java@ 35733

Last change on this file since 35733 was 35733, checked in by cstephen, 2 years ago

Add OCR servlet

File size: 606 bytes
Line 
1package org.atea.nlptools.ocr.abstractions.objects;
2
3public class HttpStatusCode
4{
5 /**
6 * 403 Forbidden
7 * The client does not have access rights to the requested content.
8 */
9 public static final int ClientForbidden = 403;
10
11 /**
12 * 413 Payload Too Large
13 * The request is larger than limits defined by the server.
14 */
15 public static final int ClientPayloadTooLarge = 413;
16
17 /**
18 * 500 Internal Server Error
19 * The server has encountered a situation that it does not know how to handle.
20 */
21 public static final int ServerInternalServerError = 500;
22}
Note: See TracBrowser for help on using the repository browser.