Class ExternalOtpValidation

java.lang.Object
es.kukenan.smartfi.microservice.firm.repository.entity.ExternalOtpValidation
All Implemented Interfaces:
Serializable, Cloneable

@Entity public class ExternalOtpValidation extends Object implements Serializable, Cloneable
DAO for externalOTPValidation table in Database.
See Also:
  • Field Details

    • id

      @Size(max=50) private @Size(max=50) String id
      Id.
    • user

      private User user
      user associated to the firm.
    • firm

      private FirmControl firm
      firm Id.
    • operationId

      @Size(max=50) private @Size(max=50) String operationId
      Operation Id.
    • backoffice

      private int backoffice
      Backoffice Id.
    • operationType

      @NotNull private @NotNull OperationType operationType
      Operation Type.
    • challengeInput

      @NotEmpty @Size(max=50) private @NotEmpty @Size(max=50) String challengeInput
      Challenge Input.
    • otpValue

      @Size(max=50) private @Size(max=50) String otpValue
      OTP value.
    • otpCreationDate

      private LocalDateTime otpCreationDate
      creation date value.
    • otpFirmDate

      private LocalDateTime otpFirmDate
      firm date.
    • otpExpirationDate

      private LocalDate otpExpirationDate
      expiration date.
    • status

      @NotNull private @NotNull Status status
      Status.
    • errorCount

      @NotNull private @javax.validation.constraints.NotNull int errorCount
      error Count.
    • tppId

      private String tppId
      error Count.
  • Constructor Details

    • ExternalOtpValidation

      public ExternalOtpValidation()
  • Method Details