generated from pricelees/issue-pr-template
[#48] Tosspay mocking 서버 구현을 위한 멀티모듈 전환 #49
@ -0,0 +1,20 @@
|
||||
package com.sangdol.common.types.web
|
||||
|
||||
enum class HttpStatus(
|
||||
val code: Int
|
||||
) {
|
||||
OK(200),
|
||||
CREATED(201),
|
||||
NO_CONTENT(204),
|
||||
BAD_REQUEST(400),
|
||||
UNAUTHORIZED(401),
|
||||
FORBIDDEN(403),
|
||||
NOT_FOUND(404),
|
||||
CONFLICT(409),
|
||||
INTERNAL_SERVER_ERROR(500)
|
||||
;
|
||||
|
||||
fun value(): Int {
|
||||
return code
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user