36. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 1:06:54 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.

36.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\dao\fpps IRfaiFppsClaimRepository.java Wed Mar 27 19:22:42 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\dao\fpps IRfaiFppsClaimRepository.java Thu Mar 28 17:50:42 2019 UTC

36.2 Comparison summary

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

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

36.4 Active regular expressions

No regular expressions were active.

36.5 Comparison detail

  1   package go v.va.med.a rs.dao.fpp s;
  2  
  3   import jav a.math.Big Integer;
  4  
  5   import org .springfra mework.dat a.jpa.repo sitory.Jpa Repository ;
  6   import org .springfra mework.dat a.jpa.repo sitory.Que ry;
  7   import org .springfra mework.dat a.reposito ry.query.P aram;
  8   import org .springfra mework.ste reotype.Re pository;
  9  
  10   import gov .va.med.do main.fee.C laim;
  11  
  12   /**
  13    * @author  
D NS     GANGAV
  14    *
  15    */
  16   @Repositor y
  17   public int erface IRf aiFppsClai mRepositor y extends  JpaReposit ory<Claim,  Long> {
  18  
  19           @Q uery("sele ct c from  fClaim c J OIN FETCH  c.provider Infos p JO IN FETCH c .personInf os pe JOIN  FETCH c.c laimProced ures cp wh ere c.clai mIndex = : claimIndex ")
  20           Cl aim getCla imInformat ion(@Param ("claimInd ex") BigIn teger id);
  21  
  22  
  23           @Q uery("sele ct cl from  fClaim cl  JOIN FETC H cl.perso nInfos pe  JOIN FETCH  cl.vaFaci lity vaf w here cl.cl aimIndex =  :claimInd ex")
  24           Cl aim getCla imWithVaFa cilityAndP ersonInfo( @Param("cl aimIndex")  BigIntege r claimInd ex);
  25  
  26   }