dps.authentication.AuthenticationManagerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dps.authentication Show documentation
Show all versions of dps.authentication Show documentation
Provides authentication mechanism for webapplications
The newest version!
package dps.authentication;
import javax.servlet.http.HttpSession;
public interface AuthenticationManagerFactory {
AuthenticationManager getAuthenticationManager(HttpSession session);
}