com.nimbusds.openid.connect.provider.spi.events.AccessTokenIssueEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c2id-server-sdk Show documentation
Show all versions of c2id-server-sdk Show documentation
SDK for Connect2id Server extensions, such as OpenID Connect claims
sources and OAuth 2.0 grant handlers
package com.nimbusds.openid.connect.provider.spi.events;
import com.nimbusds.jwt.JWTClaimsSet;
import net.jcip.annotations.Immutable;
/**
* Access token issue event.
*/
@Immutable
public class AccessTokenIssueEvent extends JWTIssueEvent {
/**
* Creates a new access token issue event.
*
* @param source The event originator.
* @param jwtClaimsSet The access token claims set.
*/
public AccessTokenIssueEvent(final Object source, final JWTClaimsSet jwtClaimsSet) {
super(source, jwtClaimsSet);
}
}