io.lsn.spring.auth.authentication.strategy.AuthenticationStrategy Maven / Gradle / Ivy
package io.lsn.spring.auth.authentication.strategy;
import io.lsn.spring.auth.entity.User;
/**
* @author Patryk Szlagowski
*/
public interface AuthenticationStrategy {
boolean supports(String name);
boolean authenticate(User user, String password);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy