org.apereo.cas.webauthn.RedisWebAuthnCredentialRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-server-support-webauthn-redis Show documentation
Show all versions of cas-server-support-webauthn-redis Show documentation
cas-server-support-webauthn-redis
package org.apereo.cas.webauthn;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;
import lombok.experimental.SuperBuilder;
import java.io.Serial;
import java.io.Serializable;
/**
* This is {@link RedisWebAuthnCredentialRegistration}.
*
* @author Misagh Moayyed
* @since 6.3.0
*/
@Getter
@Setter
@NoArgsConstructor
@SuperBuilder
@Accessors(chain = true)
public class RedisWebAuthnCredentialRegistration implements Serializable {
@Serial
private static final long serialVersionUID = 1505204109111619367L;
@JsonProperty
private String username;
@JsonProperty
private String records;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy