All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudfoundry.identity.uaa.oauth.refresh.RefreshTokenRequestData Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy