com.nimbusds.jwt.JWTHandlerAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jose-jwt Show documentation
Show all versions of nimbus-jose-jwt Show documentation
Java library for Javascript Object Signing and Encryption (JOSE) and
JSON Web Tokens (JWT)
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