org.cloudfoundry.identity.uaa.oauth.refresh.RefreshTokenRequestData Maven / Gradle / Ivy
package org.cloudfoundry.identity.uaa.oauth.refresh;
import java.util.Date;
import java.util.Map;
import java.util.Set;
public class RefreshTokenRequestData {
public final String grantType;
public final Set scopes;
public final Set authenticationMethods;
public final String authorities;
public final Set resourceIds;
public final String clientId;
public final boolean revocable;
public final Date authTime;
public final Set acr;
public final Map externalAttributes;
public RefreshTokenRequestData(String grantType,
Set scopes,
Set authenticationMethods,
String authorities,
Set resourceIds,
String clientId,
boolean revocable,
Date authTime,
Set acr,
Map externalAttributes) {
this.grantType = grantType;
this.scopes = scopes;
this.authenticationMethods = authenticationMethods;
this.authorities = authorities;
this.resourceIds = resourceIds;
this.clientId = clientId;
this.revocable = revocable;
this.authTime = authTime;
this.acr = acr;
this.externalAttributes = externalAttributes;
}
}