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

ru.foodtechlab.lib.auth.service.domain.credential.entity.Email Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package ru.foodtechlab.lib.auth.service.domain.credential.entity;

import lombok.Data;
import lombok.NoArgsConstructor;

@NoArgsConstructor
@Data
public class Email {
    private String value;
    private boolean isConfirmed;

    public Email(String value, boolean isConfirmed) {
        this.value = value != null ? value.toLowerCase() : null;
        this.isConfirmed = isConfirmed;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy