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

org.apereo.cas.webauthn.DynamoDbWebAuthnCredentialRegistration Maven / Gradle / Ivy

There is a newer version: 7.2.0-RC3
Show newest version
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