org.apereo.cas.webauthn.DynamoDbWebAuthnCredentialRegistration 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-dynamodb Show documentation
Show all versions of cas-server-support-webauthn-dynamodb Show documentation
cas-server-support-webauthn-dynamodb
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;
import java.util.List;
/**
* This is {@link DynamoDbWebAuthnCredentialRegistration}.
*
* @author Misagh Moayyed
* @since 6.3.0
*/
@Getter
@Setter
@NoArgsConstructor
@SuperBuilder
@Accessors(chain = true)
public class DynamoDbWebAuthnCredentialRegistration implements Serializable {
@Serial
private static final long serialVersionUID = 4557023022194574325L;
@JsonProperty
private String username;
@JsonProperty
private List records;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy