當前位置: 首頁>>代碼示例>>Java>>正文


Java PrematureJwtException類代碼示例

本文整理匯總了Java中io.jsonwebtoken.PrematureJwtException的典型用法代碼示例。如果您正苦於以下問題:Java PrematureJwtException類的具體用法?Java PrematureJwtException怎麽用?Java PrematureJwtException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


PrematureJwtException類屬於io.jsonwebtoken包,在下文中一共展示了PrematureJwtException類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: authenticate

import io.jsonwebtoken.PrematureJwtException; //導入依賴的package包/類
@Override
public Authentication authenticate(Authentication authentication) {
    log.debug("Authenticating: {}", authentication);
    try {
        final String token = authentication.getCredentials().toString();
        final Claims claims = jwtParser.parseClaimsJws(token).getBody();
        checkClaims(claims);
        return new JwtToken(token, claims);
    } catch (ExpiredJwtException | MalformedJwtException | PrematureJwtException | SignatureException | UnsupportedJwtException e) {
        log.warn("{}", e);
        throw new BadCredentialsException(e.getMessage(), e);
    }
}
 
開發者ID:nus-ncl,項目名稱:services-in-one,代碼行數:14,代碼來源:JwtAuthenticationProvider.java

示例2: testAuthenticatePrematureJwtException

import io.jsonwebtoken.PrematureJwtException; //導入依賴的package包/類
@Test
public void testAuthenticatePrematureJwtException() throws Exception {
    final String token = "token";
    doReturn(token).when(authentication).getCredentials();
    doThrow(new PrematureJwtException(null, null, null)).when(jwtParser).parseClaimsJws(anyString());

    exception.expect(BadCredentialsException.class);
    exception.expectCause(is(instanceOf(PrematureJwtException.class)));

    jwtAuthenticationProvider.authenticate(authentication);
}
 
開發者ID:nus-ncl,項目名稱:services-in-one,代碼行數:12,代碼來源:JwtAuthenticationProviderTest.java

示例3: validateJwt

import io.jsonwebtoken.PrematureJwtException; //導入依賴的package包/類
private Map<String, Object> validateJwt(String token, ApiRequest request, JWTPolicyBean config)
        throws ExpiredJwtException, PrematureJwtException, MalformedJwtException, SignatureException, InvalidClaimException {
    JwtParser parser = Jwts.parser()
            .setSigningKey(config.getSigningKey())
            .setAllowedClockSkewSeconds(config.getAllowedClockSkew());

    // Set all claims
    config.getRequiredClaims().stream() // TODO add type variable to allow dates, etc
        .forEach(requiredClaim -> parser.require(requiredClaim.getClaimName(), requiredClaim.getClaimValue()));

    return parser.parse(token, new ConfigCheckingJwtHandler(config));
}
 
開發者ID:apiman,項目名稱:apiman-plugins,代碼行數:13,代碼來源:JWTPolicy.java

示例4: jwtPremature

import io.jsonwebtoken.PrematureJwtException; //導入依賴的package包/類
public PolicyFailure jwtPremature(IPolicyContext context, PrematureJwtException e) {
    return createAuthenticationPolicyFailure(context, AUTH_JWT_PREMATURE,
            e.getLocalizedMessage());
}
 
開發者ID:apiman,項目名稱:apiman-plugins,代碼行數:5,代碼來源:PolicyFailureFactory.java


注:本文中的io.jsonwebtoken.PrematureJwtException類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。