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

cn.authing.sdk.java.dto.AuthenticationOptionsDto Maven / Gradle / Ivy

There is a newer version: 3.1.10
Show newest version
package cn.authing.sdk.java.dto;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

import cn.authing.sdk.java.dto.PublicKeyCredentialRequestOptionsDto;


public class AuthenticationOptionsDto {
    /**
     * 认证器认证参数
     */
    @JsonProperty("authenticationOptions")
    private PublicKeyCredentialRequestOptionsDto authenticationOptions;
    /**
     * ticket 需回传,用作向服务器发起验证从认证器获得的认证结果
     */
    @JsonProperty("ticket")
    private String ticket;

    public PublicKeyCredentialRequestOptionsDto getAuthenticationOptions() {
        return authenticationOptions;
    }
    public void setAuthenticationOptions(PublicKeyCredentialRequestOptionsDto authenticationOptions) {
        this.authenticationOptions = authenticationOptions;
    }

    public String getTicket() {
        return ticket;
    }
    public void setTicket(String ticket) {
        this.ticket = ticket;
    }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy