14073. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/4/2018 4:54:41 PM 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.

14073.1 Files compared

# Location File Last Modified
1 CHAMPVA_Benefit_Eligibility_v1.0.0.zip\webservice\champvapay-service\src\main\java\gov\va\med\mbcp\champva\dao\common IChampVAPayDAO.java Thu Dec 21 19:52:28 2017 UTC
2 CHAMPVA_Benefit_Eligibility_v1.0.0.zip\webservice\champvapay-service\src\main\java\gov\va\med\mbcp\champva\dao\common IChampVAPayDAO.java Thu Jan 4 20:58:54 2018 UTC

14073.2 Comparison summary

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

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

14073.4 Active regular expressions

No regular expressions were active.

14073.5 Comparison detail

  1   /**
  2    * The pac kage gov.v a.med.mbcp .champva.d ao.common  contains t he public  Interface  for 
  3    * retriev al of CHAM PVA CodeRe sults from  the targe t VistA in stance.
  4    * 
  5    */
  6   package go v.va.med.m bcp.champv a.dao.comm on;
  7  
  8   import gov .va.med.mb cp.champva .domain.co mmon.ICode Result;
  9   import gov .va.med.mb cp.champva .domain.im pl.ChampVA Exception;
  10  
  11   /**
  12    * Interfa ce IChampV APayDAO is  the Data  Access Obj ect for th e CHAMPVA  Pay
  13    * Service .
  14    * 
  15    * @author   PII
  16    * @versio n 1.0.0
  17    */
  18   public int erface ICh ampVAPayDA O {
  19  
  20       /**
  21        * The  business  method for  the Data  Access Obj ect.
  22        * 
  23        * @pa ram codeSy stem - Str ing identi fying the  coding sys tem identi fier (e.g. , "CPT")
  24        * @pa ram code -  String th e code to  be evaluat ed
  25        * @re turn ICode Result - C ode Result  DTO to be  serialize d to Json  by the Cha mpVAResour ce
  26        * @th rows Champ VAExceptio n - a Cham pVAExcepti on to be p ropagated  to the res ource.
  27        */
  28       public  abstract  ICodeResul t getCodeR esult(Stri ng codeSys tem, Strin g code) th rows Champ VAExceptio n;
  29  
  30   }