ServletContextAttributeEventpublic class ServletContextAttributeEvent extends ServletContextEvent This is the event class for notifications about changes to the attributes of the
servlet context of a web application. |
Fields Summary |
---|
private String | name | private Object | value |
Constructors Summary |
---|
public ServletContextAttributeEvent(ServletContext source, String name, Object value)Construct a ServletContextAttributeEvent from the given context for the
given attribute name and attribute value.
super(source);
this.name = name;
this.value = value;
|
Methods Summary |
---|
public java.lang.String | getName()Return the name of the attribute that changed on the ServletContext.
return this.name;
| public java.lang.Object | getValue()Returns the value of the attribute that has been added, removed, or replaced.
If the attribute was added, this is the value of the attribute. If the attribute was
removed, this is the value of the removed attribute. If the attribute was replaced, this
is the old value of the attribute.
return this.value;
|
|