62. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:10 AM Eastern 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.

62.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\service\report CompletedReportsSearchQueryInfo.java Wed May 29 15:26:02 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\service\report CompletedReportsSearchQueryInfo.java Mon Jun 10 19:19:21 2019 UTC

62.2 Comparison summary

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

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

62.4 Active regular expressions

No regular expressions were active.

62.5 Comparison detail

  1   // Package  
  2   package go v.va.med.c cht.servic e.report;
  3  
  4   // Java Cl asses
  5   import jav a.io.Seria lizable;
  6   import jav a.util.Dat e;
  7   import jav a.util.Lis t;
  8  
  9   import org .apache.co mmons.lang 3.builder. ToStringBu ilder;
  10  
  11   /**
  12    * 
  13    * @author   DNS
  14    *
  15    */
  16   public cla ss Complet edReportsS earchQuery Info exten ds ReportF ilterSearc hQueryInfo  implement s Serializ able {
  17           pr ivate Stri ng reportP arameters  = null;
  18           pr ivate Date  inactivat edDate = n ull;
  19           pr ivate Repo rtStatus r eportStatu s = null;
  20           pr ivate List <String> r eportIds =  null;
  21           pr ivate stat ic final l ong serial VersionUID  = -807480 7667874525 804L;
  22  
  23           pu blic Strin g getRepor tParameter s() {
  24                    retu rn reportP arameters;
  25           }
  26  
  27           pu blic void  setReportP arameters( String rep ortParamet ers) {
  28                    this .reportPar ameters =  reportPara meters;
  29           }
  30  
  31           /* *
  32            *  @see gov. va.med.fw. model.Abst ractEntity #buildToSt ring(org.a pache.comm ons.lang.b uilder.ToS tringBuild er)
  33            * /
  34           pr otected vo id buildTo String(ToS tringBuild er builder ) {
  35                    supe r.buildToS tring(buil der);
  36                    buil der.append ("reportPa rameters",  getReport Parameters ());
  37           }
  38  
  39           pu blic Date  getInactiv atedDate()  {
  40                    retu rn inactiv atedDate;
  41           }
  42  
  43           pu blic void  setInactiv atedDate(D ate archiv edDate) {
  44                    this .inactivat edDate = a rchivedDat e;
  45           }
  46  
  47           pu blic Repor tStatus ge tReportSta tus() {
  48                    retu rn reportS tatus;
  49           }
  50  
  51           pu blic void  setReportS tatus(Repo rtStatus r eportStatu s) {
  52                    this .reportSta tus = repo rtStatus;
  53           }
  54  
  55           pu blic List< String> ge tReportIds () {
  56                    retu rn reportI ds;
  57           }
  58  
  59           pu blic void  setReportI ds(List<St ring> repo rtIds) {
  60                    this .reportIds  = reportI ds;
  61           }
  62   }