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

io.smallrye.jwt.auth.cdi.NullJsonWebToken Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
package io.smallrye.jwt.auth.cdi;

import java.util.Set;

import org.eclipse.microprofile.jwt.JsonWebToken;

public class NullJsonWebToken implements JsonWebToken {

    @Override
    public String getName() {
        return null;
    }

    @Override
    public Set getClaimNames() {
        return null;
    }

    @Override
    public  T getClaim(String claimName) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy