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

no.nav.common.auth.context.AuthContext Maven / Gradle / Ivy

The newest version!
package no.nav.common.auth.context;

import com.nimbusds.jwt.JWT;
import lombok.AllArgsConstructor;
import lombok.NonNull;
import lombok.Value;

/**
 * Represents the OIDC authentication context for the requesting user
 */
@Value
@AllArgsConstructor
public class AuthContext {

    @NonNull
    UserRole role;

    @NonNull
    JWT idToken;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy