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

com.nimbusds.jwt.proc.JWTClaimsVerifier Maven / Gradle / Ivy

Go to download

Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)

There is a newer version: [ version ]
Show newest version
package com.nimbusds.jwt.proc;


import com.nimbusds.jwt.JWTClaimsSet;


/**
 * @see JWTClaimsSetVerifier
 */
@Deprecated
public interface JWTClaimsVerifier {


	/**
	 * Performs verification of selected or all claims in the specified JWT
	 * claims set.
	 *
	 * @param claimsSet The JWT claims set. Not {@code null}.
	 *
	 * @throws BadJWTException If the JWT claims set is rejected.
	 */
	@Deprecated
	void verify(final JWTClaimsSet claimsSet)
		throws BadJWTException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy