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

fun.fengwk.convention4j.oauth2.server.model.context.DefaultTokenContext Maven / Gradle / Ivy

There is a newer version: 1.1.14
Show newest version
package fun.fengwk.convention4j.oauth2.server.model.context;

import lombok.Data;

/**
 * @author fengwk
 */
@Data
public class DefaultTokenContext implements AuthenticationCodeTokenContext, ClientCredentialsTokenContext,
    PasswordTokenContext, RefreshTokenContext, SsoContext {

    private String grantType;
    private String code;
    private String redirectUri;
    private String clientId;
    private String clientSecret;
    private String scope;
    private String subjectId;
    private String refreshToken;
    private CERTIFICATE certificate;
    private String ssoId;
    private boolean ssoAuthenticate;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy