770. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/18/2018 2:02:19 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

770.1 Files compared

# Location File Last Modified
1 VIX_SIV_v3_0_patch_201_build_8.zip\v3.0_patch_201_build_8\VISA\Java\ImagingCacheImpl\main\src\java\gov\va\med\imaging\storage\cache\impl\jcifs JcifsCacheConfigurator.java Thu Oct 11 13:30:20 2018 UTC
2 VIX_SIV_v3_0_patch_201_build_8.zip\v3.0_patch_201_build_8\VISA\Java\ImagingCacheImpl\main\src\java\gov\va\med\imaging\storage\cache\impl\jcifs JcifsCacheConfigurator.java Wed Oct 17 18:51:11 2018 UTC

770.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 68
Changed 1 2
Inserted 0 0
Removed 0 0

770.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

770.4 Active regular expressions

No regular expressions were active.

770.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.i maging.sto rage.cache .impl.jcif s;
  5  
  6   import jav a.util.Has hMap;
  7   import jav a.util.Map ;
  8  
  9   import gov .va.med.im aging.stor age.cache. impl.Cache Configurat or;
  10   import gov .va.med.im aging.stor age.cache. timer.Evic tionTimerI mpl;
  11  
  12   /**
  13    * @author PI I
  14    *
  15    */
  16   public cla ss JcifsCa cheConfigu rator
  17   implements  CacheConf igurator
  18   {
  19  
  20           /*  (non-Java doc)
  21            *  @see gov. va.med.ima ging.stora ge.cache.i mpl.CacheC onfigurato r#getEvict ionTimerSw eepInterva lMap()
  22            * /
  23           pu blic Map<L ong, Strin g> getEvic tionTimerS weepInterv alMap()
  24           {
  25                    Map< Long, Stri ng> sweepI ntervalMap  = new Has hMap<Long,  String>() ;
  26                    
  27                    swee pIntervalM ap.put(new  Long(6000 0L), "0000 :00:00:00: 00:10");           //  if less t han a minu te then ne xt 10 seco nds, this  is mostly  here for t esting
  28                    swee pIntervalM ap.put(new  Long(3600 000), "000 0:00:00:00 :01:00");          //  if less t han an hou r then nex t minute
  29                    swee pIntervalM ap.put(new  Long(8640 0000), "00 00:00:00:0 1:00:00");         //  if less t han a day  then next  hour
  30                    swee pIntervalM ap.put(Evi ctionTimer Impl.defau ltAgeSpeci fication,  "0000:00:0 1:00:00:00 @0000:00:0 0:03:00:00 "); // els e, run it  once a day  at 3AM
  31                    
  32                    retu rn sweepIn tervalMap;
  33           }
  34  
  35   }