Class HttpStatus
- java.lang.Object
-
- com.smartgridready.driver.api.http.HttpStatus
-
public class HttpStatus extends java.lang.Object
Defines HTTP status code constants.
-
-
Field Summary
Fields Modifier and Type Field Description static int
BAD_REQUEST
400 Bad Request.static int
FORBIDDEN
403 Forbidden.static int
INTERNAL_SERVER_ERROR
500 Internal Server Error.static int
OK
200 OK.static int
UNAUTHORIZED
401 Unauthorized.
-
-
-
Field Detail
-
OK
public static final int OK
200 OK.- See Also:
- Constant Field Values
-
BAD_REQUEST
public static final int BAD_REQUEST
400 Bad Request.- See Also:
- Constant Field Values
-
UNAUTHORIZED
public static final int UNAUTHORIZED
401 Unauthorized.- See Also:
- Constant Field Values
-
FORBIDDEN
public static final int FORBIDDEN
403 Forbidden. FIXME status code- See Also:
- Constant Field Values
-
INTERNAL_SERVER_ERROR
public static final int INTERNAL_SERVER_ERROR
500 Internal Server Error.- See Also:
- Constant Field Values
-
-