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

32.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\dao\erepos IRfaiEreposRepository.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\erepos IRfaiEreposRepository.java Thu Mar 28 17:50:42 2019 UTC

32.2 Comparison summary

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

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

32.4 Active regular expressions

No regular expressions were active.

32.5 Comparison detail

  1   package go v.va.med.a rs.dao.ere pos;
  2  
  3   import jav a.util.Lis t;
  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.ar s.model.Re portCodeAn dRecId;
  11   import gov .va.med.do main.erepo sModel.Cla im;
  12   import gov .va.med.do main.erepo sModel.Cla imSuplInfo ;
  13   import gov .va.med.do main.erepo sModel.Ent ityAdtlId;
  14   import gov .va.med.do main.erepo sModel.Ent ityName;
  15  
  16   /**
  17    * @author  
D NS     GANGAV
  18    *
  19    */
  20   @Repositor y
  21   public int erface IRf aiEreposRe pository e xtends Jpa Repository <Claim, St ring> {
  22  
  23           @Q uery("sele ct c from  eClaim c w here c.cla imKey = :c laimIndex" )
  24           Li st<Claim>  getEreposC laimInform ation(@Par am("claimI ndex") Str ing claimI ndex);
  25  
  26           @Q uery("sele ct clm.rec eiverId fr om eClaim  clm where  clm.claimK ey = :clai mKey")
  27           St ring getRe ceiverIdBy ClaimKey(@ Param("cla imKey") St ring claim Key);
  28  
  29           @Q uery("sele ct supl.pw k01rptType Cd as repo rtcode, cl aim.receiv erId as re ceiverid f rom eClaim  claim, eC laimSuplIn fo supl wh ere claim. claimKey =  supl.clai m.claimKey  and claim .claimKey  = :claimKe y")
  30           Li st<ReportC odeAndRecI d> findRep ortCodeAnd RecIdByCla imKey(@Par am("claimK ey") Strin g claimKey );
  31  
  32           @Q uery("sele ct c from  eClaim c J OIN FETCH  c.claimSup lInfos sup l where c. claimKey =  :claimKey ")
  33           Li st<Claim>  getEreposC laimInfo(@ Param("cla imKey") St ring claim Key);
  34           
  35           @Q uery("sele ct c from  eClaim c   where c.cl aimKey = : claimKey")
  36           Li st<Claim>  getEreposC laimRows(@ Param("cla imKey") St ring claim Key);
  37           
  38           @Q uery("sele ct supl fr om eClaimS uplInfo su pl where s upl.claim  = :claim")
  39           Li st<ClaimSu plInfo> ge tEreposCla imSup(@Par am("claim" ) Claim cl aim);
  40           
  41           @Q uery("sele ct en from  eEntityNa me en, eCl aim c wher e c.claimK ey = :clai mIndex"
  42                             + " an d c.fileNu mber = en. txnSet.id. fileNumber "
  43                             + " an d c.st02tx nCtlNbr =  en.txnSet. id.st02txn CtlNbr" )
  44           Li st<EntityN ame> getEn tityNamesF romClaimKe y(@Param(" claimIndex ") String  claimIndex );
  45           
  46           @Q uery("sele ct ea from  eEntityAd tlId ea, e Claim c wh ere c.clai mKey = :cl aimIndex"
  47                             + " an d c.fileNu mber = ea. txnSet.id. fileNumber "
  48                             + " an d c.st02tx nCtlNbr =  ea.txnSet. id.st02txn CtlNbr" )
  49           Li st<EntityA dtlId> get EntityAdtl IdsFromCla imKey(@Par am("claimI ndex") Str ing claimI ndex);
  50  
  51           @Q uery(nativ eQuery = t rue, value  = "select  en.nm109i d_Cd from  e_repos.cl aim clm, e _repos.ent ity_name e n " 
  52                             + "whe re clm.FIL E_NUMBER =  en.FILE_N UMBER "
  53                             + "and  clm.ST02T XN_CTL_NBR  = en.ST02 TXN_CTL_NB R "
  54                             + "and  clm.CLAIM _KEY = :ed iClaimKey  and en.LOO P_ID = '20 10BA'")
  55           Li st<String>  getPatien tIdsFromEr epos(@Para m("ediClai mKey") Str ing ediCla imKey);
  56  
  57   }