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 HttpResponseEvent extends ViewEvent implements Exceptional { 33 36 public HttpResponseEvent() {super();} 37 38 43 public HttpResponseEvent(String urlParamStr) { 44 super(urlParamStr); 45 } 46 47 52 public HttpResponseEvent(Object source) { 53 super(source); 54 } 55 56 63 public String describeEventChainingStrategy() { 64 return Exceptional.class.getName(); 65 } 66 } 67 | Popular Tags |