31 lines
1011 B
Java
31 lines
1011 B
Java
package org.ros.chatto;
|
|
|
|
import java.io.IOException;
|
|
import java.io.PrintWriter;
|
|
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import org.springframework.security.core.AuthenticationException;
|
|
import org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component
|
|
public final class RESTAuthenticationEntryPoint extends BasicAuthenticationEntryPoint {
|
|
|
|
@Override
|
|
public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authEx)
|
|
throws IOException, ServletException {
|
|
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
|
|
PrintWriter writer = response.getWriter();
|
|
writer.println("HTTP ApplicationStatus 401 - " + authEx.getMessage());
|
|
}
|
|
|
|
@Override
|
|
public void afterPropertiesSet() throws Exception {
|
|
setRealmName("Chatto");
|
|
super.afterPropertiesSet();
|
|
}
|
|
}
|