Files
auth-activiti-app-ext/src/main/java/com/inteligr8/activiti/ais/Authenticator.java
2021-07-30 15:37:05 -04:00

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 {
}
}