weaver      2004/08/25 12:29:53

  Modified:    jetspeed-api/src/java/org/apache/jetspeed/cache/file
                        FileCacheEventListener.java
  Log:
  refresh() and evict() now throw Exception
  
  Revision  Changes    Path
  1.2       +3 -3      
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/cache/file/FileCacheEventListener.java
  
  Index: FileCacheEventListener.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/cache/file/FileCacheEventListener.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FileCacheEventListener.java       20 May 2004 15:58:58 -0000      1.1
  +++ FileCacheEventListener.java       25 Aug 2004 19:29:53 -0000      1.2
  @@ -32,14 +32,14 @@
        *
        * @param entry the entry being refreshed.
        */
  -    void refresh(FileCacheEntry entry);
  +    void refresh(FileCacheEntry entry) throws Exception;
   
       /**
        * Evict event, called when the entry is being evicted out of the cache
        *
        * @param entry the entry being refreshed.
        */
  -    void evict(FileCacheEntry entry);
  +    void evict(FileCacheEntry entry) throws Exception;
   
   }
   
  
  
  

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

Reply via email to