KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > vfs > webdav > DAVStatus


1 package com.sslexplorer.vfs.webdav;
2
3 public class DAVStatus {
4
5     public static final int SC_CONTINUE = 100;
6     public static final int SC_SWITCHING_PROTOCOLS = 101;
7     public static final int SC_PROCESSING = 102;
8     
9     public static final int SC_OK = 200;
10     public static final int SC_CREATED = 201;
11     public static final int SC_ACCEPTED = 202;
12     public static final int SC_NON_AUTHORITATIVE_INFORMATION = 203;
13     public static final int SC_NO_CONTENT = 204;
14     public static final int SC_RESET_CONTENT = 205;
15     public static final int SC_PARTIAL_CONTENT = 206;
16     public static final int SC_MULTI_STATUS = 207;
17    
18     public static final int SC_MULTIPLE_CHOICES = 300;
19     public static final int SC_MOVED_PERMANENTLY = 301;
20     public static final int SC_MOVED_TEMPORARILY = 302;
21     public static final int SC_SEE_OTHER = 303;
22     public static final int SC_NOT_MODIFIED = 304;
23     public static final int SC_USE_PROXY = 305;
24     
25     public static final int SC_BAD_REQUEST = 400;
26     public static final int SC_UNAUTHORIZED = 401;
27     public static final int SC_PAYMENT_REQUIRED = 402;
28     public static final int SC_FORBIDDEN = 403;
29     public static final int SC_NOT_FOUND = 404;
30     public static final int SC_METHOD_NOT_ALLOWED = 405;
31     public static final int SC_NOT_ACCEPTABLE = 406;
32     public static final int SC_PROXY_AUTHENTICATION_REQUIRED = 407;
33     public static final int SC_REQUEST_TIMEOUT = 408;
34     public static final int SC_CONFLICT = 409;
35     public static final int SC_GONE = 410;
36     public static final int SC_LENGTH_REQUIRED = 411;
37     public static final int SC_PRECONDITION_FAILED = 412;
38     public static final int SC_REQUEST_TOO_LONG = 413;
39     public static final int SC_UNSUPPORTED_MEDIA_TYPE = 415;
40     public static final int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
41     public static final int SC_EXPECTATION_FAILED = 417;
42     //public static final int SC_UNPROCESSABLE_ENTITY = 418;
43
// This one colides with HTTP 1.1
44
// "418 Reauthentication Required"
45
public static final int SC_INSUFFICIENT_SPACE_ON_RESOURCE = 419;
46     // This one colides with HTTP 1.1
47
// "419 Proxy Reauthentication Required"
48
public static final int SC_METHOD_FAILURE = 420;
49     public static final int SC_UNPROCESSABLE_ENTITY = 422;
50     public static final int SC_LOCKED = 423;
51     public static final int SC_FAILED_DEPENDENCY = 424;
52     
53     public static final int SC_INTERNAL_SERVER_ERROR = 500;
54     public static final int SC_NOT_IMPLEMENTED = 501;
55     public static final int SC_BAD_GATEWAY = 502;
56     public static final int SC_SERVICE_UNAVAILABLE = 503;
57     public static final int SC_GATEWAY_TIMEOUT = 504;
58     public static final int SC_HTTP_VERSION_NOT_SUPPORTED = 505;
59     public static final int SC_INSUFFICIENT_STORAGE = 507;
60
61 }
62
Popular Tags