View Javadoc
1   package org.oxerr.spring.security.otp.core;
2   
3   import org.springframework.security.core.Authentication;
4   import org.springframework.security.core.AuthenticationException;
5   
6   public interface OTPAuthenticationService {
7   
8   	Authentication loadAuthenticationByOneTimePassword(String oneTimePassword) throws AuthenticationException;
9   
10  }