@atlantjs/arch 2.6.3 → 2.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +0 -2
- package/index.js +1 -3
- package/objects/arch/infrastructure/http-status-codes.enum.d.ts +0 -116
- package/objects/arch/infrastructure/http-status-codes.enum.js +0 -116
- package/package.json +2 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/utils/http-client/http-client-response.d.ts +1 -1
- package/utils/http-client/http-client-response.js +1 -1
- package/objects/arch/application/injections.abstract.d.ts +0 -4
- package/objects/arch/application/injections.abstract.js +0 -6
- package/objects/arch/application/injections.abstract.type.d.ts +0 -22
- package/objects/arch/application/injections.abstract.type.js +0 -2
package/index.d.ts
CHANGED
|
@@ -28,5 +28,3 @@ export { randomNumber } from "./utils/randoms/random-number";
|
|
|
28
28
|
export { Guardian } from "./utils/type-guard/guardian";
|
|
29
29
|
export { PrimitiveType } from "./utils/type-guard/guardian.type";
|
|
30
30
|
export { HttpClient } from "./utils/http-client/http-client";
|
|
31
|
-
export { InjectionsAbstract } from "./objects/arch/application/injections.abstract";
|
|
32
|
-
export { Injections } from "./objects/arch/application/injections.abstract.type";
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.HttpClient = exports.Guardian = exports.randomNumber = exports.randomEnumValueExcept = exports.randomEnumValue = exports.Failure = exports.Success = exports.Optional = exports.Nothing = exports.Something = exports.ExtendedMap = exports.EntityBuilder = exports.CreateFakeUsecase = exports.UuidBuilder = exports.FailureBuilder = exports.UuidAbstract = exports.$boolean = exports.$number = exports.$string = exports.NodeEnvs = exports.ResponseAbstract = exports.HttpStatusCodes = exports.RepositoryAbstract = exports.ServiceAbstract = exports.EntityAbstract = exports.ControllerAbstract = exports.UsecaseAbstract = exports.UnknownApplicationFailure = exports.FailureAbstract = exports.IAM_MOVINGAPP_REALM_PUBLIC_KEY_RS256 = exports.ENVIRONMENT = void 0;
|
|
4
4
|
require("./utils/datatypes/string-utils");
|
|
5
5
|
var env_vars_1 = require("./configs/env/env-vars");
|
|
6
6
|
Object.defineProperty(exports, "ENVIRONMENT", { enumerable: true, get: function () { return env_vars_1.ENVIRONMENT; } });
|
|
@@ -59,5 +59,3 @@ var guardian_1 = require("./utils/type-guard/guardian");
|
|
|
59
59
|
Object.defineProperty(exports, "Guardian", { enumerable: true, get: function () { return guardian_1.Guardian; } });
|
|
60
60
|
var http_client_1 = require("./utils/http-client/http-client");
|
|
61
61
|
Object.defineProperty(exports, "HttpClient", { enumerable: true, get: function () { return http_client_1.HttpClient; } });
|
|
62
|
-
var injections_abstract_1 = require("./objects/arch/application/injections.abstract");
|
|
63
|
-
Object.defineProperty(exports, "InjectionsAbstract", { enumerable: true, get: function () { return injections_abstract_1.InjectionsAbstract; } });
|
|
@@ -1,31 +1,21 @@
|
|
|
1
1
|
export declare enum HttpStatusCodes {
|
|
2
2
|
/**
|
|
3
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.2.1
|
|
4
|
-
*
|
|
5
3
|
* This interim response indicates that everything so far is OK and that the client should continue with the request or ignore it if it is already finished.
|
|
6
4
|
*/
|
|
7
5
|
CONTINUE = 100,
|
|
8
6
|
/**
|
|
9
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.2.2
|
|
10
|
-
*
|
|
11
7
|
* This code is sent in response to an Upgrade request header by the client, and indicates the protocol the server is switching too.
|
|
12
8
|
*/
|
|
13
9
|
SWITCHING_PROTOCOLS = 101,
|
|
14
10
|
/**
|
|
15
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.1
|
|
16
|
-
*
|
|
17
11
|
* This code indicates that the server has received and is processing the request, but no response is available yet.
|
|
18
12
|
*/
|
|
19
13
|
PROCESSING = 102,
|
|
20
14
|
/**
|
|
21
|
-
* Official Documentation @ https://www.rfc-editor.org/rfc/rfc8297#page-3
|
|
22
|
-
*
|
|
23
15
|
* This code indicates to the client that the server is likely to send a final response with the header fields included in the informational response.
|
|
24
16
|
*/
|
|
25
17
|
EARLY_HINTS = 103,
|
|
26
18
|
/**
|
|
27
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.3.1
|
|
28
|
-
*
|
|
29
19
|
* The request has succeeded. The meaning of a success varies depending on the HTTP method:
|
|
30
20
|
* GET: The resource has been fetched and is transmitted in the message body.
|
|
31
21
|
* HEAD: The entity headers are in the message body.
|
|
@@ -34,322 +24,216 @@ export declare enum HttpStatusCodes {
|
|
|
34
24
|
*/
|
|
35
25
|
OK = 200,
|
|
36
26
|
/**
|
|
37
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.3.2
|
|
38
|
-
*
|
|
39
27
|
* The request has succeeded and a new resource has been created as a result of it. This is typically the response sent after a PUT request.
|
|
40
28
|
*/
|
|
41
29
|
CREATED = 201,
|
|
42
30
|
/**
|
|
43
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.3.3
|
|
44
|
-
*
|
|
45
31
|
* The request has been received but not yet acted upon. It is non-committal, meaning that there is no way in HTTP to later send an asynchronous response indicating the outcome of processing the request. It is intended for cases where another process or server handles the request, or for batch processing.
|
|
46
32
|
*/
|
|
47
33
|
ACCEPTED = 202,
|
|
48
34
|
/**
|
|
49
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.3.4
|
|
50
|
-
*
|
|
51
35
|
* This response code means returned meta-information set is not exact set as available from the origin server, but collected from a local or a third party copy. Except this condition, 200 OK response should be preferred instead of this response.
|
|
52
36
|
*/
|
|
53
37
|
NON_AUTHORITATIVE_INFORMATION = 203,
|
|
54
38
|
/**
|
|
55
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.3.5
|
|
56
|
-
*
|
|
57
39
|
* There is no content to send for this request, but the headers may be useful. The user-agent may update its cached headers for this resource with the new ones.
|
|
58
40
|
*/
|
|
59
41
|
NO_CONTENT = 204,
|
|
60
42
|
/**
|
|
61
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.3.6
|
|
62
|
-
*
|
|
63
43
|
* This response code is sent after accomplishing request to tell user agent reset document view which sent this request.
|
|
64
44
|
*/
|
|
65
45
|
RESET_CONTENT = 205,
|
|
66
46
|
/**
|
|
67
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7233#section-4.1
|
|
68
|
-
*
|
|
69
47
|
* This response code is used because of range header sent by the client to separate download into multiple streams.
|
|
70
48
|
*/
|
|
71
49
|
PARTIAL_CONTENT = 206,
|
|
72
50
|
/**
|
|
73
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.2
|
|
74
|
-
*
|
|
75
51
|
* A Multi-Status response conveys information about multiple resources in situations where multiple status codes might be appropriate.
|
|
76
52
|
*/
|
|
77
53
|
MULTI_STATUS = 207,
|
|
78
54
|
/**
|
|
79
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.4.1
|
|
80
|
-
*
|
|
81
55
|
* The request has more than one possible responses. User-agent or user should choose one of them. There is no standardized way to choose one of the responses.
|
|
82
56
|
*/
|
|
83
57
|
MULTIPLE_CHOICES = 300,
|
|
84
58
|
/**
|
|
85
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.4.2
|
|
86
|
-
*
|
|
87
59
|
* This response code means that URI of requested resource has been changed. Probably, new URI would be given in the response.
|
|
88
60
|
*/
|
|
89
61
|
MOVED_PERMANENTLY = 301,
|
|
90
62
|
/**
|
|
91
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.4.3
|
|
92
|
-
*
|
|
93
63
|
* This response code means that URI of requested resource has been changed temporarily. New changes in the URI might be made in the future. Therefore, this same URI should be used by the client in future requests.
|
|
94
64
|
*/
|
|
95
65
|
MOVED_TEMPORARILY = 302,
|
|
96
66
|
/**
|
|
97
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.4.4
|
|
98
|
-
*
|
|
99
67
|
* Server sent this response to directing client to get requested resource to another URI with an GET request.
|
|
100
68
|
*/
|
|
101
69
|
SEE_OTHER = 303,
|
|
102
70
|
/**
|
|
103
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7232#section-4.1
|
|
104
|
-
*
|
|
105
71
|
* This is used for caching purposes. It is telling to client that response has not been modified. So, client can continue to use same cached version of response.
|
|
106
72
|
*/
|
|
107
73
|
NOT_MODIFIED = 304,
|
|
108
74
|
/**
|
|
109
75
|
* @deprecated
|
|
110
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.4.6
|
|
111
|
-
*
|
|
112
76
|
* Was defined in a previous version of the HTTP specification to indicate that a requested response must be accessed by a proxy. It has been deprecated due to security concerns regarding in-band configuration of a proxy.
|
|
113
77
|
*/
|
|
114
78
|
USE_PROXY = 305,
|
|
115
79
|
/**
|
|
116
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.4.7
|
|
117
|
-
*
|
|
118
80
|
* Server sent this response to directing client to get requested resource to another URI with same method that used prior request. This has the same semantic than the 302 Found HTTP response code, with the exception that the user agent must not change the HTTP method used: if a POST was used in the first request, a POST must be used in the second request.
|
|
119
81
|
*/
|
|
120
82
|
TEMPORARY_REDIRECT = 307,
|
|
121
83
|
/**
|
|
122
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7538#section-3
|
|
123
|
-
*
|
|
124
84
|
* This means that the resource is now permanently located at another URI, specified by the Location: HTTP Response header. This has the same semantics as the 301 Moved Permanently HTTP response code, with the exception that the user agent must not change the HTTP method used: if a POST was used in the first request, a POST must be used in the second request.
|
|
125
85
|
*/
|
|
126
86
|
PERMANENT_REDIRECT = 308,
|
|
127
87
|
/**
|
|
128
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.1
|
|
129
|
-
*
|
|
130
88
|
* This response means that server could not understand the request due to invalid syntax.
|
|
131
89
|
*/
|
|
132
90
|
BAD_REQUEST = 400,
|
|
133
91
|
/**
|
|
134
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7235#section-3.1
|
|
135
|
-
*
|
|
136
92
|
* Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.
|
|
137
93
|
*/
|
|
138
94
|
UNAUTHORIZED = 401,
|
|
139
95
|
/**
|
|
140
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.2
|
|
141
|
-
*
|
|
142
96
|
* This response code is reserved for future use. Initial aim for creating this code was using it for digital payment systems however this is not used currently.
|
|
143
97
|
*/
|
|
144
98
|
PAYMENT_REQUIRED = 402,
|
|
145
99
|
/**
|
|
146
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.3
|
|
147
|
-
*
|
|
148
100
|
* The client does not have access rights to the content, i.e. they are unauthorized, so server is rejecting to give proper response. Unlike 401, the client's identity is known to the server.
|
|
149
101
|
*/
|
|
150
102
|
FORBIDDEN = 403,
|
|
151
103
|
/**
|
|
152
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.4
|
|
153
|
-
*
|
|
154
104
|
* The server can not find requested resource. In the browser, this means the URL is not recognized. In an API, this can also mean that the endpoint is valid but the resource itself does not exist. Servers may also send this response instead of 403 to hide the existence of a resource from an unauthorized client. This response code is probably the most famous one due to its frequent occurence on the web.
|
|
155
105
|
*/
|
|
156
106
|
NOT_FOUND = 404,
|
|
157
107
|
/**
|
|
158
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.5
|
|
159
|
-
*
|
|
160
108
|
* The request method is known by the server but has been disabled and cannot be used. For example, an API may forbid DELETE-ing a resource. The two mandatory methods, GET and HEAD, must never be disabled and should not return this error code.
|
|
161
109
|
*/
|
|
162
110
|
METHOD_NOT_ALLOWED = 405,
|
|
163
111
|
/**
|
|
164
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.6
|
|
165
|
-
*
|
|
166
112
|
* This response is sent when the web server, after performing server-driven content negotiation, doesn't find any content following the criteria given by the user agent.
|
|
167
113
|
*/
|
|
168
114
|
NOT_ACCEPTABLE = 406,
|
|
169
115
|
/**
|
|
170
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7235#section-3.2
|
|
171
|
-
*
|
|
172
116
|
* This is similar to 401 but authentication is needed to be done by a proxy.
|
|
173
117
|
*/
|
|
174
118
|
PROXY_AUTHENTICATION_REQUIRED = 407,
|
|
175
119
|
/**
|
|
176
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.7
|
|
177
|
-
*
|
|
178
120
|
* This response is sent on an idle connection by some servers, even without any previous request by the client. It means that the server would like to shut down this unused connection. This response is used much more since some browsers, like Chrome, Firefox 27+, or IE9, use HTTP pre-connection mechanisms to speed up surfing. Also note that some servers merely shut down the connection without sending this message.
|
|
179
121
|
*/
|
|
180
122
|
REQUEST_TIMEOUT = 408,
|
|
181
123
|
/**
|
|
182
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.8
|
|
183
|
-
*
|
|
184
124
|
* This response is sent when a request conflicts with the current state of the server.
|
|
185
125
|
*/
|
|
186
126
|
CONFLICT = 409,
|
|
187
127
|
/**
|
|
188
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.9
|
|
189
|
-
*
|
|
190
128
|
* This response would be sent when the requested content has been permenantly deleted from server, with no forwarding address. Clients are expected to remove their caches and links to the resource. The HTTP specification intends this status code to be used for "limited-time, promotional services". APIs should not feel compelled to indicate resources that have been deleted with this status code.
|
|
191
129
|
*/
|
|
192
130
|
GONE = 410,
|
|
193
131
|
/**
|
|
194
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.10
|
|
195
|
-
*
|
|
196
132
|
* The server rejected the request because the Content-Length header field is not defined and the server requires it.
|
|
197
133
|
*/
|
|
198
134
|
LENGTH_REQUIRED = 411,
|
|
199
135
|
/**
|
|
200
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7232#section-4.2
|
|
201
|
-
*
|
|
202
136
|
* The client has indicated preconditions in its headers which the server does not meet.
|
|
203
137
|
*/
|
|
204
138
|
PRECONDITION_FAILED = 412,
|
|
205
139
|
/**
|
|
206
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.11
|
|
207
|
-
*
|
|
208
140
|
* Request entity is larger than limits defined by server; the server might close the connection or return an Retry-After header field.
|
|
209
141
|
*/
|
|
210
142
|
REQUEST_TOO_LONG = 413,
|
|
211
143
|
/**
|
|
212
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.12
|
|
213
|
-
*
|
|
214
144
|
* The URI requested by the client is longer than the server is willing to interpret.
|
|
215
145
|
*/
|
|
216
146
|
REQUEST_URI_TOO_LONG = 414,
|
|
217
147
|
/**
|
|
218
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.13
|
|
219
|
-
*
|
|
220
148
|
* The media format of the requested data is not supported by the server, so the server is rejecting the request.
|
|
221
149
|
*/
|
|
222
150
|
UNSUPPORTED_MEDIA_TYPE = 415,
|
|
223
151
|
/**
|
|
224
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7233#section-4.4
|
|
225
|
-
*
|
|
226
152
|
* The range specified by the Range header field in the request can't be fulfilled; it's possible that the range is outside the size of the target URI's data.
|
|
227
153
|
*/
|
|
228
154
|
REQUESTED_RANGE_NOT_SATISFIABLE = 416,
|
|
229
155
|
/**
|
|
230
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.5.14
|
|
231
|
-
*
|
|
232
156
|
* This response code means the expectation indicated by the Expect request header field can't be met by the server.
|
|
233
157
|
*/
|
|
234
158
|
EXPECTATION_FAILED = 417,
|
|
235
159
|
/**
|
|
236
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2324#section-2.3.2
|
|
237
|
-
*
|
|
238
160
|
* Any attempt to brew coffee with a teapot should result in the error code "418 I'm a teapot". The resulting entity body MAY be short and stout.
|
|
239
161
|
*/
|
|
240
162
|
IM_A_TEAPOT = 418,
|
|
241
163
|
/**
|
|
242
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.6
|
|
243
|
-
*
|
|
244
164
|
* The 507 (Insufficient Storage) status code means the method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request. This condition is considered to be temporary. If the request which received this status code was the result of a user action, the request MUST NOT be repeated until it is requested by a separate user action.
|
|
245
165
|
*/
|
|
246
166
|
INSUFFICIENT_SPACE_ON_RESOURCE = 419,
|
|
247
167
|
/**
|
|
248
168
|
* @deprecated
|
|
249
|
-
* Official Documentation @ https://tools.ietf.org/rfcdiff?difftype=--hwdiff&url2=draft-ietf-webdav-protocol-06.txt
|
|
250
|
-
*
|
|
251
169
|
* A deprecated response used by the Spring Framework when a method has failed.
|
|
252
170
|
*/
|
|
253
171
|
METHOD_FAILURE = 420,
|
|
254
172
|
/**
|
|
255
|
-
* Official Documentation @ https://datatracker.ietf.org/doc/html/rfc7540#section-9.1.2
|
|
256
|
-
*
|
|
257
173
|
* Defined in the specification of HTTP/2 to indicate that a server is not able to produce a response for the combination of scheme and authority that are included in the request URI.
|
|
258
174
|
*/
|
|
259
175
|
MISDIRECTED_REQUEST = 421,
|
|
260
176
|
/**
|
|
261
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.3
|
|
262
|
-
*
|
|
263
177
|
* The request was well-formed but was unable to be followed due to semantic errors.
|
|
264
178
|
*/
|
|
265
179
|
UNPROCESSABLE_ENTITY = 422,
|
|
266
180
|
/**
|
|
267
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.4
|
|
268
|
-
*
|
|
269
181
|
* The resource that is being accessed is locked.
|
|
270
182
|
*/
|
|
271
183
|
LOCKED = 423,
|
|
272
184
|
/**
|
|
273
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.5
|
|
274
|
-
*
|
|
275
185
|
* The request failed due to failure of a previous request.
|
|
276
186
|
*/
|
|
277
187
|
FAILED_DEPENDENCY = 424,
|
|
278
188
|
/**
|
|
279
|
-
* Official Documentation @ https://datatracker.ietf.org/doc/html/rfc7231#section-6.5.15
|
|
280
|
-
*
|
|
281
189
|
* The server refuses to perform the request using the current protocol but might be willing to do so after the client upgrades to a different protocol.
|
|
282
190
|
*/
|
|
283
191
|
UPGRADE_REQUIRED = 426,
|
|
284
192
|
/**
|
|
285
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc6585#section-3
|
|
286
|
-
*
|
|
287
193
|
* The origin server requires the request to be conditional. Intended to prevent the 'lost update' problem, where a client GETs a resource's state, modifies it, and PUTs it back to the server, when meanwhile a third party has modified the state on the server, leading to a conflict.
|
|
288
194
|
*/
|
|
289
195
|
PRECONDITION_REQUIRED = 428,
|
|
290
196
|
/**
|
|
291
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc6585#section-4
|
|
292
|
-
*
|
|
293
197
|
* The user has sent too many requests in a given amount of time ("rate limiting").
|
|
294
198
|
*/
|
|
295
199
|
TOO_MANY_REQUESTS = 429,
|
|
296
200
|
/**
|
|
297
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc6585#section-5
|
|
298
|
-
*
|
|
299
201
|
* The server is unwilling to process the request because its header fields are too large. The request MAY be resubmitted after reducing the size of the request header fields.
|
|
300
202
|
*/
|
|
301
203
|
REQUEST_HEADER_FIELDS_TOO_LARGE = 431,
|
|
302
204
|
/**
|
|
303
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7725
|
|
304
|
-
*
|
|
305
205
|
* The user-agent requested a resource that cannot legally be provided, such as a web page censored by a government.
|
|
306
206
|
*/
|
|
307
207
|
UNAVAILABLE_FOR_LEGAL_REASONS = 451,
|
|
308
208
|
/**
|
|
309
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.6.1
|
|
310
|
-
*
|
|
311
209
|
* The server encountered an unexpected condition that prevented it from fulfilling the request.
|
|
312
210
|
*/
|
|
313
211
|
INTERNAL_SERVER_ERROR = 500,
|
|
314
212
|
/**
|
|
315
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.6.2
|
|
316
|
-
*
|
|
317
213
|
* The request method is not supported by the server and cannot be handled. The only methods that servers are required to support (and therefore that must not return this code) are GET and HEAD.
|
|
318
214
|
*/
|
|
319
215
|
NOT_IMPLEMENTED = 501,
|
|
320
216
|
/**
|
|
321
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.6.3
|
|
322
|
-
*
|
|
323
217
|
* This error response means that the server, while working as a gateway to get a response needed to handle the request, got an invalid response.
|
|
324
218
|
*/
|
|
325
219
|
BAD_GATEWAY = 502,
|
|
326
220
|
/**
|
|
327
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.6.4
|
|
328
|
-
*
|
|
329
221
|
* The server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded. Note that together with this response, a user-friendly page explaining the problem should be sent. This responses should be used for temporary conditions and the Retry-After: HTTP header should, if possible, contain the estimated time before the recovery of the service. The webmaster must also take care about the caching-related headers that are sent along with this response, as these temporary condition responses should usually not be cached.
|
|
330
222
|
*/
|
|
331
223
|
SERVICE_UNAVAILABLE = 503,
|
|
332
224
|
/**
|
|
333
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.6.5
|
|
334
|
-
*
|
|
335
225
|
* This error response is given when the server is acting as a gateway and cannot get a response in time.
|
|
336
226
|
*/
|
|
337
227
|
GATEWAY_TIMEOUT = 504,
|
|
338
228
|
/**
|
|
339
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc7231#section-6.6.6
|
|
340
|
-
*
|
|
341
229
|
* The HTTP version used in the request is not supported by the server.
|
|
342
230
|
*/
|
|
343
231
|
HTTP_VERSION_NOT_SUPPORTED = 505,
|
|
344
232
|
/**
|
|
345
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc2518#section-10.6
|
|
346
|
-
*
|
|
347
233
|
* The server has an internal configuration error: the chosen variant resource is configured to engage in transparent content negotiation itself, and is therefore not a proper end point in the negotiation process.
|
|
348
234
|
*/
|
|
349
235
|
INSUFFICIENT_STORAGE = 507,
|
|
350
236
|
/**
|
|
351
|
-
* Official Documentation @ https://tools.ietf.org/html/rfc6585#section-6
|
|
352
|
-
*
|
|
353
237
|
* The 511 status code indicates that the client needs to authenticate to gain network access.
|
|
354
238
|
*/
|
|
355
239
|
NETWORK_AUTHENTICATION_REQUIRED = 511
|