Constructor of ServletContextAttributeEvent Class
- public ServletContextAttributeEvent(ServletContext source, java.lang.String name,java.lang.Object value): Construct a ServletContextAttributeEvent from the given context for the given attribute name and attribute value.
- public java.lang.String getName(): Return the name of the attribute that changed on the ServletContext.
- public java.lang.Object getValue(): Returns the value of the attribute that has been added, removed, or replaced.
- void attributeAdded(ServletContextAttributeEvent event): Receives notification that an attribute has been added to the ServletContext.
- void attributeRemoved(ServletContextAttributeEvent event): Receives notification that an attribute has been removed from the ServletContext.
- void attributeReplaced(ServletContextAttributeEvent event): Receives notification that an attribute has been replaced from the ServletContext.
No comments:
Post a Comment