| javax.servlet.ServletRequestEvent javax.servlet.ServletRequestAttributeEvent
ServletRequestAttributeEvent | public class ServletRequestAttributeEvent extends ServletRequestEvent (Code) | | The event class for changes to servlet request attributes.
since: Servlet 2.4 |
Method Summary | |
public String | getName() Returns the name of the attribute that changed. | public Object | getValue() Returns the value of the attribute that changed. |
ServletRequestAttributeEvent | public ServletRequestAttributeEvent(ServletContext application, ServletRequest request, String name, Object value)(Code) | | Creates a ServletContextAttributeEvent for the changed application.
Parameters: application - the servlet context that has changed. Parameters: request - the request context that has changed. Parameters: name - the name of the attribute that changed Parameters: value - the value of the attribute that changed |
getName | public String getName()(Code) | | Returns the name of the attribute that changed.
|
getValue | public Object getValue()(Code) | | Returns the value of the attribute that changed.
add | the new value
| remove | the old value
| replace | the old value
|
|
|
|