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

com.nimbusds.jwt.JWTHandlerAdapter 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: 10.0.1
Show newest version
package com.nimbusds.jwt;


/**
 * JWT handler adapter. Intended to be extended by classes that need to handle
 * only a subset of the JWT types.
 *
 * @author Vladimir Dzhuvinov
 * @since 3.4
 * @version $version$ (2014-11-18)
 */
public class JWTHandlerAdapter implements JWTHandler {


	@Override
	public T onPlainJWT(final PlainJWT plainJWT) {
		return null;
	}


	@Override
	public T onSignedJWT(final SignedJWT signedJWT) {
		return null;
	}


	@Override
	public T onEncryptedJWT(final EncryptedJWT encryptedJWT) {
		return null;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy