~ubuntu-branches/ubuntu/oneiric/jenkins-winstone/oneiric

« back to all changes in this revision

Viewing changes to src/java/javax/servlet/ServletRequestAttributeListener.java

  • Committer: Bazaar Package Importer
  • Author(s): James Page
  • Date: 2011-06-29 12:16:17 UTC
  • Revision ID: james.westby@ubuntu.com-20110629121617-vd3ha6lp4nqvxkbr
Tags: upstream-0.9.10-jenkins-25+dfsg
ImportĀ upstreamĀ versionĀ 0.9.10-jenkins-25+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2003-2006 Rick Knowles <winstone-devel at lists sourceforge net>
 
3
 * Distributed under the terms of either:
 
4
 * - the common development and distribution license (CDDL), v1.0; or
 
5
 * - the GNU Lesser General Public License, v2.1 or later
 
6
 */
 
7
package javax.servlet;
 
8
 
 
9
import java.util.EventListener;
 
10
 
 
11
/**
 
12
 * Interface defining request attribute listeners
 
13
 * 
 
14
 * @author <a href="mailto:rick_knowles@hotmail.com">Rick Knowles</a>
 
15
 * @version $Id: ServletRequestAttributeListener.java,v 1.2 2006/02/28 07:32:48 rickknowles Exp $
 
16
 */
 
17
public interface ServletRequestAttributeListener extends EventListener {
 
18
    public void attributeAdded(ServletRequestAttributeEvent srae);
 
19
 
 
20
    public void attributeRemoved(ServletRequestAttributeEvent srae);
 
21
 
 
22
    public void attributeReplaced(ServletRequestAttributeEvent srae);
 
23
}