Package dev.sigstore.oidc.client
Interface OidcToken
-
@Immutable public interface OidcTokenA token from a provider with both openid and email scope claims.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIdToken()The full oidc token obtained from the provider.java.lang.StringgetIssuer()The issuer of the id token.java.lang.StringgetSubjectAlternativeName()The subject or email claim from the token to include in the SAN on the certificate.
-
-
-
Method Detail
-
getSubjectAlternativeName
java.lang.String getSubjectAlternativeName()
The subject or email claim from the token to include in the SAN on the certificate.
-
getIssuer
java.lang.String getIssuer()
The issuer of the id token.
-
getIdToken
@Redacted java.lang.String getIdToken()
The full oidc token obtained from the provider.
-
-