126. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:11 AM Eastern 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.

126.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\cache CacheManager.java Wed May 29 15:26:02 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\cache CacheManager.java Mon Jun 10 19:30:05 2019 UTC

126.2 Comparison summary

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

126.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

126.4 Active regular expressions

No regular expressions were active.

126.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2006 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.cache;
  6  
  7   import jav a.io.Seria lizable;
  8  
  9   /**
  10    * Interfa ce for cac he managem ent.
  11    * 
  12    * Created  May 17, 2 006 1:21:1 1 PM
  13    * 
  14    * @author   DNS     DN S
  15    */
  16   public int erface Cac heManager  extends Se rializable  {
  17           /* *
  18            *  Returns a  cached it em bound t o the spec ific key
  19            *  
  20            *  @param ke y
  21            *              A unique  key to se arch for a  cached it em
  22            *  @return A  cached it em
  23            * /
  24           pu blic Objec t getItem( Object key );
  25  
  26           /* *
  27            *  Removes a  cached it em bound t o the spec ific key f rom a cach e
  28            *  
  29            *  @param ke y
  30            *              A unique  key to se arch for a  cached it em
  31            *  @return A  removed c ached item
  32            * /
  33           pu blic Objec t removeIt em(Object  key);
  34  
  35           /* *
  36            *  Stores an  item boun d to the s pecific ke y in a cac he
  37            *  
  38            *  @param ke y
  39            *              A unique  key to se arch for a  cached it em
  40            *  @param va lue
  41            *              An item  to be cach ed
  42            * /
  43           pu blic void  cacheItem( Object key , Object v alue);
  44  
  45           /* *
  46            *  Checks if  a cached  item bound  to the sp ecific key  is cached
  47            *  
  48            *  @param ke y
  49            *              A unique  key to se arch for a  cached it em
  50            *  @return T rue if fou nd, False  otherwise
  51            * /
  52           pu blic boole an contain sItem(Obje ct key);
  53   }