001package com.nimbusds.jwt.proc; 002 003 004import com.nimbusds.jwt.JWTClaimsSet; 005 006 007/** 008 * @see JWTClaimsSetVerifier 009 */ 010@Deprecated 011public interface JWTClaimsVerifier { 012 013 014 /** 015 * Performs verification of selected or all claims in the specified JWT 016 * claims set. 017 * 018 * @param claimsSet The JWT claims set. Not {@code null}. 019 * 020 * @throws BadJWTException If the JWT claims set is rejected. 021 */ 022 @Deprecated 023 void verify(final JWTClaimsSet claimsSet) 024 throws BadJWTException; 025}