Package caldavclientlibrary :: Package protocol :: Package http :: Package definitions :: Module statuscodes
[hide private]
[frames] | no frames]

Source Code for Module caldavclientlibrary.protocol.http.definitions.statuscodes

 1  ## 
 2  # Copyright (c) 2006-2016 Apple Inc. All rights reserved. 
 3  # 
 4  # Licensed under the Apache License, Version 2.0 (the "License"); 
 5  # you may not use this file except in compliance with the License. 
 6  # You may obtain a copy of the License at 
 7  # 
 8  # http://www.apache.org/licenses/LICENSE-2.0 
 9  # 
10  # Unless required by applicable law or agreed to in writing, software 
11  # distributed under the License is distributed on an "AS IS" BASIS, 
12  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
13  # See the License for the specific language governing permissions and 
14  # limitations under the License. 
15  ## 
16   
17   
18  Unknown = 0 
19  Continue = 100 
20  SwitchingProtocols = 101 
21  OK = 200 
22  Created = 201 
23  Accepted = 202 
24  NonAuthoritativeInformation = 203 
25  NoContent = 204 
26  ResetContent = 205 
27  PartialContent = 206 
28  MultipleChoices = 300 
29  MovedPermanently = 301 
30  Found = 302 
31  SeeOther = 303 
32  NotModified = 304 
33  UseProxy = 305 
34  TemporaryRedirect = 307 
35  BadRequest = 400 
36  Unauthorized = 401 
37  PaymentRequired = 402 
38  Forbidden = 403 
39  NotFound = 404 
40  MethodNotAllowed = 405 
41  NotAcceptable = 406 
42  ProxyAuthenticationRequired = 407 
43  RequestTimeout = 408 
44  Conflict = 409 
45  Gone = 410 
46  LengthRequired = 411 
47  PreconditionFailed = 412 
48  RequestEntityTooLarge = 413 
49  RequestURITooLarge = 414 
50  UnsupportedMediaType = 415 
51  RequestedRangeNotSatisfiable = 416 
52  ExpectationFailed = 417 
53  InternalServerError = 500 
54  NotImplemented = 501 
55  BadGateway = 502 
56  ServiceUnavailable = 503 
57  GatewayTimeout = 504 
58  HTTPVersionNotSupported = 505 
59