
com.github.ibole.infrastructure.security.jwt.JwtConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infrastructure-all Show documentation
Show all versions of infrastructure-all Show documentation
The all in one project of ibole infrastructure
The newest version!
package com.github.ibole.infrastructure.security.jwt;
/*********************************************************************************************.
*
*
* Copyright 2016, iBole Inc. All rights reserved.
*
*
*********************************************************************************************/
/**
* @author bwang ([email protected])
*
*/
public final class JwtConstant {
//密钥 id
public static final String KID_RSA = "RSA_USING_SHA256";
public static final String KID_ES256_ECDSA = "ES256_ECDSA";
public static final String CLIENT_ID = "clientId";
public static final String LOGIN_ID = "loginId";
public static final String ROLE_ID = "roles";
public static final int TTL_SECONDS = 1800;
private JwtConstant(){};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy