dion        02/01/18 20:37:36

  Modified:    latka/src/java/org/apache/commons/latka/event
                        RequestEvent.java
  Log:
  Added javadocs
  
  Revision  Changes    Path
  1.5       +18 -3     
jakarta-commons/latka/src/java/org/apache/commons/latka/event/RequestEvent.java
  
  Index: RequestEvent.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/event/RequestEvent.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- RequestEvent.java 23 Aug 2001 16:24:25 -0000      1.4
  +++ RequestEvent.java 19 Jan 2002 04:37:36 -0000      1.5
  @@ -63,8 +63,23 @@
   import org.apache.commons.latka.http.Response;
   import org.apache.commons.latka.http.Session;
   
  +/**
  + * The basic set of methods available on all Latka events
  + */
   public interface RequestEvent extends LatkaEvent {
  -   public abstract Request getRequest();
  -   public abstract Response getResponse();
  -   public abstract Session getSession();
  +    
  +    /** the request the event is about
  +     * @return the request the event relates to
  +     */
  +    public abstract Request getRequest();
  +    
  +    /** the response associated with the event's request
  +     * @return the response for the event's request
  +     */
  +    public abstract Response getResponse();
  +
  +    /** the session the event took place within
  +     * @return the session the event took within
  +     */
  +    public abstract Session getSession();
   }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to