HTTPStatusCode

HTTP status code constants used in the Solid protocol. See https://solidproject.org/TR/protocol

Properties

Link copied to clipboard
const val BAD_REQUEST: Int = 400
Link copied to clipboard
const val CONFLICT: Int = 409
Link copied to clipboard
const val CREATED: Int = 201
Link copied to clipboard
const val FORBIDDEN: Int = 403
Link copied to clipboard
const val GONE: Int = 410
Link copied to clipboard
const val INTERNAL_SERVER_ERROR: Int = 500
Link copied to clipboard
const val METHOD_NOT_ALLOWED: Int = 405
Link copied to clipboard
const val MOVED_PERMANENTLY: Int = 301
Link copied to clipboard
const val NO_CONTENT: Int = 204
Link copied to clipboard
const val NOT_FOUND: Int = 404
Link copied to clipboard
const val OK: Int = 200
Link copied to clipboard
const val PERMANENT_REDIRECT: Int = 308
Link copied to clipboard
const val PRECONDITION_FAILED: Int = 412
Link copied to clipboard
const val TEMPORARY_REDIRECT: Int = 307
Link copied to clipboard
const val UNAUTHORIZED: Int = 401
Link copied to clipboard
const val UNPROCESSABLE_ENTITY: Int = 422