I’m wondering if there is an enum type in some standard Java class library that defines symbolic constants for all of the valid HTTP response codes. It should support conversion to/from the corresponding integer values.
I’m debugging some Java code that uses javax.ws.rs.core.Response.Status. It works, but it only defines about half of the valid HTTP response codes.
I don’t think there’s one that’s complete in the standard Java classes;
HttpURLConnectionis missing quite a few codes, likeHTTP 100/Continue.There’s a complete list in the Apache HttpComponents, though:
org.apache.http.HttpStatus(replacedorg.apache.commons.HttpClient.HttpStatusfrom Apache Http Client, which reached end of life)