Example usage for Java javax.servlet ServletContextAttributeEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
ServletContextAttributeEvent(ServletContext source, String name, Object value) Constructs a ServletContextAttributeEvent from the given ServletContext, attribute name, and attribute value. |
String | getName() Gets the name of the ServletContext attribute that changed. |
ServletContext | getServletContext() Return the ServletContext that changed. |
Object | getSource() The object on which the Event initially occurred. |
Object | getValue() Gets the value of the ServletContext attribute that changed. |