![JAR search and dependency download from the Maven repository](/logo.png)
org.cloudfoundry.identity.uaa.oauth.openid.UserAuthenticationData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-identity-server Show documentation
Show all versions of cloudfoundry-identity-server Show documentation
Cloud Foundry User Account and Authentication
The newest version!
package org.cloudfoundry.identity.uaa.oauth.openid;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Set;
public class UserAuthenticationData {
public final Date authTime;
public final Set authenticationMethods;
public final Set contextClassRef;
public final Set scopes;
public final Set roles;
public final Map> userAttributes;
public final String nonce;
public final String grantType;
public final String jti;
public UserAuthenticationData(Date authTime,
Set authenticationMethods,
Set contextClassRef,
Set scopes,
Set roles,
Map> userAttributes,
String nonce,
String grantType,
String jti) {
this.authTime = authTime;
this.authenticationMethods = authenticationMethods;
this.contextClassRef = contextClassRef;
this.scopes = scopes;
this.roles = roles;
this.userAttributes = userAttributes;
this.nonce = nonce;
this.grantType = grantType;
this.jti = jti;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy