All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.springframework.jwt.auth.exception.TokenStatus Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.springframework.jwt.auth.exception;

public class TokenStatus {

    // 身份验证失败
    public static int TOKEN_ERROR = 401;

    // 会话已经过期
    public static int TOKEN_EXPIRED = 402;

    // 没有访问权限
    public static int UNAUTHORIZED = 403;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy