1 20 package org.enhydra.barracuda.core.event; 21 22 import java.io.*; 23 import java.util.*; 24 import javax.servlet.*; 25 import javax.servlet.http.*; 26 27 32 public class HttpRequestEvent extends ControlEvent implements Polymorphic { 33 36 public HttpRequestEvent() {super();} 37 38 43 public HttpRequestEvent(String urlParamStr) { 44 super(urlParamStr); 45 } 46 47 52 public HttpRequestEvent(Object source) { 53 super(source); 54 } 55 56 63 public String describeEventChainingStrategy() { 64 return Polymorphic.class.getName(); 65 } 66 } 67 | Popular Tags |