|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.security.intercept.web.FilterInvocation
public class FilterInvocation
Holds objects associated with a HTTP filter.
Guarantees the request and response are instances of
HttpServletRequest
and HttpServletResponse
, and that there are no null
objects.
Required so that security system classes can obtain access to the filter environment, as well as the request and response.
Constructor Summary | |
---|---|
FilterInvocation(ServletRequest request,
ServletResponse response,
FilterChain chain)
|
Method Summary | |
---|---|
FilterChain |
getChain()
|
String |
getFullRequestUrl()
Indicates the URL that the user agent used for this request. |
HttpServletRequest |
getHttpRequest()
|
HttpServletResponse |
getHttpResponse()
|
ServletRequest |
getRequest()
|
String |
getRequestUrl()
Obtains the web application-specific fragment of the URL. |
ServletResponse |
getResponse()
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public FilterInvocation(ServletRequest request, ServletResponse response, FilterChain chain)
Method Detail |
---|
public FilterChain getChain()
public String getFullRequestUrl()
The returned URL does not reflect
the port number determined from a PortResolver
.
public HttpServletRequest getHttpRequest()
public HttpServletResponse getHttpResponse()
public ServletRequest getRequest()
public String getRequestUrl()
public ServletResponse getResponse()
public String toString()
toString
in class Object
|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |