15 lines
415 B
Java
15 lines
415 B
Java
package com.inteligr8.activiti.ais;
|
|
|
|
import org.springframework.security.core.Authentication;
|
|
import org.springframework.security.core.AuthenticationException;
|
|
|
|
public interface Authenticator {
|
|
|
|
default void preAuthenticate(Authentication authentication) throws AuthenticationException {
|
|
}
|
|
|
|
default void postAuthenticate(Authentication authentication) throws AuthenticationException {
|
|
}
|
|
|
|
}
|