1 17 package javax.servlet; 18 19 20 26 27 public class ServletRequestAttributeEvent extends ServletRequestEvent { 28 private String name; 29 private Object value; 30 31 40 public ServletRequestAttributeEvent(ServletContext sc, ServletRequest request, String name, Object value) { 41 super(sc, request); 42 this.name = name; 43 this.value = value; 44 } 45 46 51 public String getName() { 52 return this.name; 53 } 54 55 64 public Object getValue() { 65 return this.value; 66 } 67 } 68 | Popular Tags |