28. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 2/7/2017 12:14:06 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.

28.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\job\cbs CbsRuntimeState.java Wed Feb 1 21:07:30 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\job\cbs CbsRuntimeState.java Fri Feb 3 20:42:56 2017 UTC

28.2 Comparison summary

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

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

28.4 Active regular expressions

No regular expressions were active.

28.5 Comparison detail

  1   package go v.va.cpss. job.cbs;
  2  
  3   import jav a.util.Lis t;
  4   import jav a.util.Map ;
  5  
  6   import gov .va.cpss.m odel.fps.P SPatient;
  7  
  8   /**
  9    * Interfa ce for the  runtime p arameters  used by th e Generate  CBS batch  job
  10    * during  processing .
  11    * 
  12    * @author   DN S      P II
  13    */
  14   public int erface Cbs RuntimeSta te {
  15  
  16           pu blic boole an isEmpty ();
  17  
  18           pu blic void  setEmpty(b oolean emp ty);
  19  
  20           pu blic boole an isDataE rror();
  21  
  22           pu blic void  setDataErr or(boolean  dataError );
  23  
  24           /* *
  25            *  Clears an y residual  values fr om previou s use.
  26            * /
  27           pu blic void  initialize ();
  28  
  29           /* *
  30            *  Add entry  to the PS Received I D list.
  31            * /
  32           pu blic boole an addPSRe ceivedEntr y(final Lo ng id);
  33  
  34           /* *
  35            *  Add entry  to the PS Site list.
  36            * /
  37           pu blic boole an addPSSi teEntry(fi nal Long p sSite);
  38  
  39           /* *
  40            *  Get the w hole list  of PSRecei ved ID.
  41            * /
  42           pu blic List< Long> getP SReceivedI DList();
  43  
  44           /* *
  45            *  Get the c urrent PSR eceived ID .
  46            * /
  47           pu blic Long  getCurrent PSReceived ID();
  48  
  49           /* *
  50            *  Get the c urrent PSS ite.
  51            * /
  52           pu blic Long  getCurrent PSSiteID() ;
  53  
  54           /* *
  55            *  Poll the  next curre nt PSRecei ved ID.
  56            * /
  57           pu blic Long  pollCurren tPSReceive dID();
  58  
  59           /* *
  60            *  Poll the  next curre nt PSSite.
  61            * /
  62           pu blic Long  pollCurren tPSSiteID( );
  63           
  64           /* *
  65            *  Save the  raw list o f PSPatien t into the  CBS Accou nt ID to L ist of PSP atient Map .
  66            *  
  67            *  @return B oolean ind icating if  successfu lly added  the patien t list to  the
  68            *          C BS Account  ID sorted  map.
  69            * /
  70           pu blic boole an savePSP atientMap( Map<Long,  List<PSPat ient>> que ryM);
  71           
  72           /* *
  73            *  Get the c urrent CBS  Account I D to List  of PSPatie nt Map.
  74            *  @return M ap of CBS  Account ID  to List o f PSPatien t.
  75            * /
  76           pu blic Map.E ntry<Long,  List<PSPa tient>> ge tCurrentPS PatientM() ;
  77           
  78           /* *
  79            *  Get the n ext entry  of the CBS  Account I D to List  of PSPatie nt Map.
  80            *  @return T he next en try or nul l if empty .
  81            * /
  82           pu blic Map.E ntry<Long,  List<PSPa tient>> po llCurrentP SPatientM( );
  83   }