1 17 package javax.servlet; 18 19 20 26 27 public class ServletContextAttributeEvent extends ServletContextEvent { 28 private String name; 29 private Object value; 30 31 34 public ServletContextAttributeEvent(ServletContext source, String name, Object value) { 35 super(source); 36 this.name = name; 37 this.value = value; 38 } 39 40 44 public String getName() { 45 return this.name; 46 } 47 48 55 56 public Object getValue() { 57 return this.value; 58 } 59 } 60 61 | Popular Tags |