/** {@inheritDoc} */
public void commence(ServletRequest request, ServletResponse response, AuthenticationException authException) throws IOException, ServletException {
String url = getUrl(request);
AuthenticationEntryPoint entryPoint = getAppropriateEntryPoint(url);
entryPoint.commence(request, response, authException);
}