Packages

object Status extends Serializable

Source
Status.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Status
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait ResponseClass extends AnyRef

Value Members

  1. val Accepted: Status
  2. val AlreadyReported: Status
  3. val BadGateway: Status
  4. val BadRequest: Status
  5. val Conflict: Status
  6. val Continue: Status

    Status code list taken from http://www.iana.org/assignments/http-status-codes/http-status-codes.xml

  7. val Created: Status
  8. val EarlyHints: Status
  9. val ExpectationFailed: Status
  10. val FailedDependency: Status
  11. val Forbidden: Status
  12. val Found: Status
  13. val GatewayTimeout: Status
  14. val Gone: Status
  15. val HttpVersionNotSupported: Status
  16. val IMUsed: Status
  17. val InsufficientStorage: Status
  18. val InternalServerError: Status
  19. val LengthRequired: Status
  20. val Locked: Status
  21. val LoopDetected: Status
  22. val MethodNotAllowed: Status
  23. val MisdirectedRequest: Status
  24. val MovedPermanently: Status
  25. val MultiStatus: Status
  26. val MultipleChoices: Status
  27. val NetworkAuthenticationRequired: Status
  28. val NoContent: Status
  29. val NonAuthoritativeInformation: Status
  30. val NotAcceptable: Status
  31. val NotExtended: Status
  32. val NotFound: Status
  33. val NotImplemented: Status
  34. val NotModified: Status
  35. val Ok: Status
  36. val PartialContent: Status
  37. val PayloadTooLarge: Status
  38. val PaymentRequired: Status
  39. val PermanentRedirect: Status
  40. val PreconditionFailed: Status
  41. val PreconditionRequired: Status
  42. val Processing: Status
  43. val ProxyAuthenticationRequired: Status
  44. val RangeNotSatisfiable: Status
  45. val RequestHeaderFieldsTooLarge: Status
  46. val RequestTimeout: Status
  47. val ResetContent: Status
  48. val SeeOther: Status
  49. val ServiceUnavailable: Status
  50. val SwitchingProtocols: Status
  51. val TemporaryRedirect: Status
  52. val TooEarly: Status
  53. val TooManyRequests: Status
  54. val Unauthorized: Status
  55. val UnavailableForLegalReasons: Status
  56. val UnprocessableEntity: Status
  57. val UnsupportedMediaType: Status
  58. val UpgradeRequired: Status
  59. val UriTooLong: Status
  60. val UseProxy: Status
  61. val VariantAlsoNegotiates: Status
  62. def apply(code: Int, reason: String = "", isEntityAllowed: Boolean = true): Status
  63. def fromInt(code: Int): ParseResult[Status]
  64. def fromIntAndReason(code: Int, reason: String): ParseResult[Status]
  65. implicit val http4sOrderForStatus: Order[Status]
  66. implicit val http4sShowForStatus: Show[Status]
  67. object ClientError extends ResponseClass with Product with Serializable
  68. object Informational extends ResponseClass with Product with Serializable
  69. object Redirection extends ResponseClass with Product with Serializable
  70. object ResponseClass
  71. object ServerError extends ResponseClass with Product with Serializable
  72. object Successful extends ResponseClass with Product with Serializable