| Enumerator | 
|---|
| HTTP_RESPONSE_CODE_UNDEFINED  | No HTTP response received.  
 | 
| SUCCESS_OK  | HTTP Success with response payload.  
 | 
| SUCCESS_CREATED  | HTTP Success with new resource created.  
 | 
| SUCCESS_ACCEPTED  |  | 
| SUCCESS_NO_CONTENT  | HTTP Success with no response payload.  
 | 
| SUCCESS_PARTIAL_CONTENT  | HTTP Success with partial content.  
 | 
| REDIRECTION_MULTIPLE_CHOICES  | Multiple redirection choices.  
 | 
| REDIRECTION_MOVED_PERMANENTLY  | Content moved permanently.  
 | 
| REDIRECTION_FOUND  | Content found on another URI.  
 | 
| REDIRECTION_SEE_ANOTHER  | See another - Should issue a GET to the other URI and assume that data was received on this request.  
 | 
| REDIRECTION_TEMPORARY_REDIRECT  | Content can be found on another URI, but the redirect should not be cached - cannot change HTTP method.  
 | 
| REDIRECTION_PERMANENT_REDIRECT  | Content can be found on another URI, and the redirect should be cached - cannot change HTTP method.  
 | 
| CLIENT_ERROR_BAD_REQUEST  | HTTP code for invalid request by user.  
 | 
| CLIENT_ERROR_FORBIDDEN  | HTTP code for forbidden request by user.  
 | 
| CLIENT_ERROR_THROTTLING_EXCEPTION  | HTTP code for too many requests to the service.  
 | 
| SERVER_ERROR_INTERNAL  | HTTP code for internal error by server which didn't fulfill the request.  
 | 
| SERVER_ERROR_NOT_IMPLEMENTED  | HTTP code for internal error by server for not supporting the facility requested.  
 | 
| SERVER_UNAVAILABLE  | HTTP code for service not available.  
 | 
| SUCCESS_START_CODE  | First success code.  
 | 
| SUCCESS_END_CODE  | Last success code.  
 | 
| REDIRECTION_START_CODE  | First code in redirection range.  
 | 
| REDIRECTION_END_CODE  | Last code in redirection range.  
 |