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

io.corbel.oauth.mail.EmailValidationConfiguration Maven / Gradle / Ivy

The newest version!
package io.corbel.oauth.mail;

/**
 * @author Alberto J. Rubio
 */
public class EmailValidationConfiguration extends NotificationConfiguration {

    private final boolean validationEnabled;

    public EmailValidationConfiguration(String notificationId, String clientUrl, long tokenDurationInSeconds, boolean validationEnabled) {
        super(notificationId, clientUrl, tokenDurationInSeconds);
        this.validationEnabled = validationEnabled;
    }

    public boolean isValidationEnabled() {
        return validationEnabled;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy