com.nimbusds.openid.connect.provider.spi.reg.statement.SoftwareStatementContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of software-statement-verifier Show documentation
Show all versions of software-statement-verifier Show documentation
Software statement verifier for the Connect2id server
The newest version!
package com.nimbusds.openid.connect.provider.spi.reg.statement;
import com.nimbusds.jose.proc.SecurityContext;
import com.nimbusds.jwt.JWTClaimsSet;
final class SoftwareStatementContext implements SecurityContext {
private final JWTClaimsSet statementClaims;
public SoftwareStatementContext(final JWTClaimsSet statementClaims) {
if (statementClaims == null) {
throw new IllegalArgumentException();
}
this.statementClaims = statementClaims;
}
public JWTClaimsSet getStatementClaims() {
return statementClaims;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy