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

no.nav.brukerdialog.security.jwks.JwtHeader Maven / Gradle / Ivy

There is a newer version: 1.2020.02.21_14.01-cdaccec525a6
Show newest version
package no.nav.brukerdialog.security.jwks;

public class JwtHeader {
    private final String kid;
    private final String algorithm;

    public JwtHeader(String kid, String algorithm) {
        this.kid = kid;
        this.algorithm = algorithm;
    }

    public String getKid() {
        return kid;
    }

    public String getAlgorithm() {
        return algorithm;
    }

    @Override
    public String toString() {
        return JwtHeader.class.getSimpleName() + "{" +
                "kid='" + kid +
                ", algorithm='" + algorithm +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy