yoavs       2004/05/26 09:14:04

  Modified:    catalina/src/share/org/apache/catalina/session
                        PersistentManagerBase.java
  Log:
  Minor JavaDoc fixes (Bugzilla 28335)
  
  Revision  Changes    Path
  1.19      +5 -8      
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java
  
  Index: PersistentManagerBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- PersistentManagerBase.java        27 Feb 2004 14:58:46 -0000      1.18
  +++ PersistentManagerBase.java        26 May 2004 16:14:04 -0000      1.19
  @@ -379,9 +379,6 @@
        * otherwise false is returned
        *
        * @param id The session id for the session to be searched for
  -     *
  -     * @exception IOException if an input/output error occurs while
  -     *  processing this request
        */
       public boolean isLoaded( String id ){
           try {
  @@ -425,7 +422,7 @@
       /** 
        * Number of session creations that failed due to maxActiveSessions.
        *
  -     * @return
  +     * @return The count
        */
       public int getRejectedSessions() {
           return rejectedSessions;
  @@ -439,7 +436,7 @@
   
       /** Number of sessions that expired.
        *
  -     * @return
  +     * @return The count
        */
       public int getExpiredSessions() {
           return expiredSessions;
  @@ -530,7 +527,7 @@
        * false, any sessions found in the Store may still be picked up when
        * the Manager is started again.
        *
  -     * @param save true if sessions should be saved on restart, false if
  +     * @param saveOnRestart true if sessions should be saved on restart, false if
        *     they should be ignored.
        */
       public void setSaveOnRestart(boolean saveOnRestart) {
  @@ -717,7 +714,7 @@
        * Remove this Session from the active Sessions for this Manager,
        * and from the Store.
        *
  -     * @param is Session's id to be removed
  +     * @param id Session's id to be removed
        */    
       protected void removeSession(String id){
           try {
  
  
  

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

Reply via email to