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

org.mailster.smtp.core.auth.LoginValidator Maven / Gradle / Ivy

package org.mailster.smtp.core.auth;

/**
 * Use this when your authentication scheme uses a username and a password.
 *
 * @author De Oliveira Edouard <[email protected]>
 * @author Marco Trevisan 
 */
public interface LoginValidator {

    void login(final String username, final String password) throws LoginFailedException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy