|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.EventObject org.springframework.context.ApplicationEvent org.springframework.web.context.support.RequestHandledEvent org.springframework.web.context.support.ServletRequestHandledEvent
public class ServletRequestHandledEvent
Servlet-specific subclass of RequestHandledEvent, adding servlet-specific context information.
FrameworkServlet
,
ApplicationEventPublisher.publishEvent(org.springframework.context.ApplicationEvent)
,
Serialized FormField Summary |
---|
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
ServletRequestHandledEvent(Object source,
String requestUrl,
String clientAddress,
String method,
String servletName,
String sessionId,
String userName,
long processingTimeMillis)
Create a new ServletRequestHandledEvent. |
|
ServletRequestHandledEvent(Object source,
String requestUrl,
String clientAddress,
String method,
String servletName,
String sessionId,
String userName,
long processingTimeMillis,
Throwable failureCause)
Create a new ServletRequestHandledEvent. |
Method Summary | |
---|---|
String |
getClientAddress()
Return the IP address that the request came from. |
String |
getDescription()
Return a full description of this event, involving all available context data. |
String |
getMethod()
Return the HTTP method of the request (usually GET or POST). |
String |
getRequestUrl()
Return the URL of the request. |
String |
getServletName()
Return the name of the servlet that handled the request. |
String |
getShortDescription()
Return a short description of this event, only involving the most important context data. |
String |
toString()
|
Methods inherited from class org.springframework.web.context.support.RequestHandledEvent |
---|
getFailureCause, getProcessingTimeMillis, getSessionId, getUserName, wasFailure |
Methods inherited from class org.springframework.context.ApplicationEvent |
---|
getTimestamp |
Methods inherited from class java.util.EventObject |
---|
getSource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ServletRequestHandledEvent(Object source, String requestUrl, String clientAddress, String method, String servletName, String sessionId, String userName, long processingTimeMillis)
source
- the component that published the eventrequestUrl
- the URL of the requestclientAddress
- the IP address that the request came frommethod
- the HTTP method of the request (usually GET or POST)servletName
- the name of the servlet that handled the requestsessionId
- the id of the HTTP session, if anyuserName
- the name of the user that was associated with the
request, if any (usually the UserPrincipal)processingTimeMillis
- the processing time of the request in millisecondspublic ServletRequestHandledEvent(Object source, String requestUrl, String clientAddress, String method, String servletName, String sessionId, String userName, long processingTimeMillis, Throwable failureCause)
source
- the component that published the eventrequestUrl
- the URL of the requestclientAddress
- the IP address that the request came frommethod
- the HTTP method of the request (usually GET or POST)servletName
- the name of the servlet that handled the requestsessionId
- the id of the HTTP session, if anyuserName
- the name of the user that was associated with the
request, if any (usually the UserPrincipal)processingTimeMillis
- the processing time of the request in millisecondsfailureCause
- the cause of failure, if anyMethod Detail |
---|
public String getRequestUrl()
public String getClientAddress()
public String getMethod()
public String getServletName()
public String getShortDescription()
RequestHandledEvent
getShortDescription
in class RequestHandledEvent
public String getDescription()
RequestHandledEvent
getDescription
in class RequestHandledEvent
public String toString()
toString
in class RequestHandledEvent
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |