Revize 3512e735
Přidáno uživatelem Petr Urban před asi 2 roky(ů)
src/main/java/cz/zcu/fav/kiv/antipatterndetectionapp/v2/dials/UserModelStatusCodes.java | ||
---|---|---|
11 | 11 |
USER_LOGGED_IN("User logged in successfully",200), |
12 | 12 |
USER_LOGIN_FAILED("User login failed",401), |
13 | 13 |
USER_CREATION_FAILED("Error occurred while creating user",503), |
14 |
USER_LOGGED_OUT("User logged out.",200); |
|
14 |
USER_LOGGED_OUT("User logged out.",200), |
|
15 |
TOKEN_REFRESHED("User token refreshed.",200), |
|
16 |
TOKEN_EXPIRED("User token is expired.",401); |
|
15 | 17 |
|
16 | 18 |
private final String label; |
17 | 19 |
private final int statusCode; |
Také k dispozici: Unified diff
#10398 vytváření endpointu pro refresh tokenu s P. Urb.