189. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:25 AM 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.

189.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\ui\model ScheduledReportForm.java Fri Dec 7 17:36:30 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\ui\model ScheduledReportForm.java Wed Dec 12 22:33:39 2018 UTC

189.2 Comparison summary

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

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

189.4 Active regular expressions

No regular expressions were active.

189.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrig ht � 2010  VHA. All r ights rese rved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.c cht.ui.mod el;
  5  
  6   import gov .va.med.fw .ui.model. Form;
  7   import gov .va.med.fw .ui.model. TermType;
  8  
  9   /**
  10    * 
  11    * 
  12    * IHTA oh rs_web Sep  9, 2010
  13    * 
  14    * @author   DNS
  15    */
  16   public cla ss Schedul edReportFo rm extends  Form {
  17           pr ivate Stan dardReport Form stand ardReport;
  18           pr ivate Stri ng emailAd dress;
  19           pr ivate Stri ng setupUs er;
  20           pr ivate Stri ng reportP arametersT ext;
  21           pr ivate Stri ng reportS cheduleTex t;
  22           pr ivate Stri ng frequen cy;
  23           pr ivate Stri ng fromDat e;
  24           pr ivate Stri ng toDate;
  25           pr ivate Term Type fileT ype;
  26  
  27           pu blic Strin g getEmail Address()  {
  28                    retu rn emailAd dress;
  29           }
  30  
  31           pu blic void  setEmailAd dress(Stri ng emailAd dress) {
  32                    this .emailAddr ess = emai lAddress;
  33           }
  34  
  35           pu blic Strin g getRepor tParameter sText() {
  36                    retu rn reportP arametersT ext;
  37           }
  38  
  39           pu blic void  setReportP arametersT ext(String  reportPar ametersTex t) {
  40                    this .reportPar ametersTex t = report Parameters Text;
  41           }
  42  
  43           pu blic Strin g getRepor tScheduleT ext() {
  44                    retu rn reportS cheduleTex t;
  45           }
  46  
  47           pu blic void  setReportS cheduleTex t(String r eportSched uleText) {
  48                    this .reportSch eduleText  = reportSc heduleText ;
  49           }
  50  
  51           pu blic Strin g getSetup User() {
  52                    retu rn setupUs er;
  53           }
  54  
  55           pu blic void  setSetupUs er(String  setupUser)  {
  56                    this .setupUser  = setupUs er;
  57           }
  58  
  59           pu blic Stand ardReportF orm getSta ndardRepor t() {
  60                    retu rn standar dReport;
  61           }
  62  
  63           pu blic void  setStandar dReport(St andardRepo rtForm sta ndardRepor t) {
  64                    this .standardR eport = st andardRepo rt;
  65           }
  66  
  67           pu blic TermT ype getFil eType() {
  68                    retu rn fileTyp e;
  69           }
  70  
  71           pu blic void  setFileTyp e(TermType  fileType)  {
  72                    this .fileType  = fileType ;
  73           }
  74  
  75           pu blic Strin g getFrequ ency() {
  76                    retu rn frequen cy;
  77           }
  78  
  79           pu blic void  setFrequen cy(String  frequency)  {
  80                    this .frequency  = frequen cy;
  81           }
  82  
  83           pu blic Strin g getFromD ate() {
  84                    retu rn fromDat e;
  85           }
  86  
  87           pu blic void  setFromDat e(String f romDate) {
  88                    this .fromDate  = fromDate ;
  89           }
  90  
  91           pu blic Strin g getToDat e() {
  92                    retu rn toDate;
  93           }
  94  
  95           pu blic void  setToDate( String toD ate) {
  96                    this .toDate =  toDate;
  97           }
  98  
  99   }