234. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:26 AM Eastern Standard 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.

234.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\cache CacheManager.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\cache CacheManager.java Wed Dec 12 22:26:41 2018 UTC

234.2 Comparison summary

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

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

234.4 Active regular expressions

No regular expressions were active.

234.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    * DNS
  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   }