public interface

RedirectStrategy

org.springframework.security.web.RedirectStrategy
Known Indirect Subclasses

Class Overview

Encapsulates the redirection logic for all classes in the framework which perform redirects.

Summary

Public Methods
abstract void sendRedirect(HttpServletRequest request, HttpServletResponse response, String url)
Performs a redirect to the supplied URL

Public Methods

public abstract void sendRedirect (HttpServletRequest request, HttpServletResponse response, String url)

Performs a redirect to the supplied URL

Parameters
request the current request
response the response to redirect
url the target URL to redirect to, for example "/login"
Throws
IOException