85. EPMO Open Source Coordination Office Redaction File Detail Report

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

85.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ewv\model\response EwvPdfReferencesResponse.java Wed Mar 27 19:22:50 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ewv\model\response EwvPdfReferencesResponse.java Thu Mar 28 17:51:02 2019 UTC

85.2 Comparison summary

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

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

85.4 Active regular expressions

No regular expressions were active.

85.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.e wv.model.r esponse;
  5  
  6   import jav a.util.Arr ayList;
  7   import jav a.util.Lis t;
  8  
  9   import gov .va.med.ew v.util.Pdf Reference;
  10  
  11   /**
  12    * This is  the Respo nse object  that is u sed to ret urn back a  List of P DF Referen ces
  13    * as the  Response B ody to use  in the "a pi/v1/pdfR eference/g etAllPdfRe ferences" 
  14    * RESTFul  Web Servi ce Call.
  15    * 
  16    * @author   DN S      PEREZF
  17    *
  18    */
  19   public cla ss EwvPdfR eferencesR esponse {
  20           
  21           /* *
  22            *  Stores th e list of  PDF Refere nces.
  23            * /
  24           pr ivate List <PdfRefere nce> pdfRe ferencesLi st = new A rrayList<P dfReferenc e>();
  25  
  26           /* *
  27            *  Construct or.
  28            * /
  29           pu blic EwvPd fReference sResponse( ) { }
  30           
  31           /* *
  32            *  Gets the  list of PD F Referenc es.
  33            *  
  34            *  @return l ist of PDF  Reference s
  35            * /
  36           pu blic List< PdfReferen ce> getPdf References List() {
  37                    retu rn pdfRefe rencesList ;
  38           }
  39           
  40           /* *
  41            *  Sets the  List of PD F Referenc es.
  42            *  
  43            *  @param pd fReference sList - va lue to use  to set th e "pdfRefe rencesList " data
  44            * /
  45           pu blic void  setPdfRefe rencesList (List<PdfR eference>  pdfReferen cesList) {
  46                    if ( pdfReferen cesList ==  null) {
  47                             this.p dfReferenc esList = n ew ArrayLi st<PdfRefe rence>();
  48                    } el se {
  49                             this.p dfReferenc esList = p dfReferenc esList;
  50                    }
  51           }
  52   }