270. EPMO Open Source Coordination Office Redaction File Detail Report

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

270.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\batchprocess JobResult.java Fri Dec 7 17:36:36 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\batchprocess JobResult.java Wed Dec 12 22:26:42 2018 UTC

270.2 Comparison summary

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

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

270.4 Active regular expressions

No regular expressions were active.

270.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2006 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.model.ba tchprocess ;
  6  
  7   import jav a.util.Dat e;
  8  
  9   import jav ax.persist ence.Colum n;
  10   import jav ax.persist ence.Entit y;
  11   import jav ax.persist ence.Gener atedValue;
  12   import jav ax.persist ence.Id;
  13   import jav ax.persist ence.Table ;
  14   import jav ax.persist ence.Trans ient;
  15  
  16   import gov .va.med.cc ht.model.C CHTAuditFi elds;
  17   import gov .va.med.cc ht.ui.mode l.BatchPro cessDetail Form;
  18   import gov .va.med.fw .model.loo kup.Simple LookupUtil s;
  19  
  20   /**
  21    * Initial  javadoc f or class J obResult.  TODO - Add  content h ere
  22    * 
  23    * Created  Sep 21, 2 006 3:49:2 9 PM
  24    * 
  25    * DNS
  26    */
  27   @Entity
  28   @Table(sch ema="ht",  name="JOB_ RESULT")
  29   public cla ss JobResu lt extends  CCHTAudit Fields{
  30           
  31           pr ivate long  id;
  32           pr ivate Stri ng name;
  33           pr ivate Stri ng group; 
  34           pr ivate Date  startDate ;
  35           pr ivate Date  endDate;
  36           pr ivate Stri ng context ;
  37           pr ivate Stri ng status;
  38           pr ivate Stri ng statist ics;
  39           pr ivate Stri ng jobStat us;
  40  
  41           @I
  42           @G eneratedVa lue(strate gy = javax .persisten ce.Generat ionType.ID ENTITY)
  43           @C olumn(name  = "JOB_RE SULT_ID")
  44           pu blic long  getId() {
  45                    retu rn id;
  46           }
  47  
  48           pu blic void  setId(long  id) {
  49                    this .id = id;
  50           }
  51  
  52           @C olumn(name  = "JOB_NA ME")
  53           pu blic Strin g getName( ) {
  54                    retu rn name;
  55           }
  56  
  57           pu blic void  setName(St ring name)  {
  58                    this .name = na me;
  59           }
  60  
  61           @C olumn(name  = "JOB_GR OUP_NAME")
  62           pu blic Strin g getGroup () {
  63                    retu rn group;
  64           }
  65  
  66           pu blic void  setGroup(S tring grou p) {
  67                    this .group = g roup;
  68           }
  69  
  70           @C olumn(name  = "JOB_CO NTEXT")
  71           pu blic Strin g getConte xt() {
  72                    retu rn context ;
  73           }
  74  
  75           pu blic void  setContext (String co ntext) {
  76                    this .context =  context;
  77           }
  78  
  79           @C olumn(name  = "JOB_ST ATISTICS")
  80           pu blic Strin g getStati stics() {
  81                    retu rn statist ics;
  82           }
  83  
  84           pu blic void  setStatist ics(String  statistic s) {
  85                    this .statistic s = statis tics;
  86           }
  87  
  88           @T ransient
  89           pu blic JobSt atus getSt atus() {
  90                    retu rn (JobSta tus) Simpl eLookupUti ls.getByCo de(JobStat us.class,  status);
  91           }
  92  
  93           pu blic void  setStatus( JobStatus  status) {
  94                    this .status =  status.get Code();
  95           }
  96           
  97       @Trans ient
  98       public  String ge tFormatted StartDate( ) {
  99           re turn Batch ProcessDet ailForm.fo rmatter.fo rmat(getSt artDate()) ;
  100       }
  101  
  102       @Trans ient
  103       public  String ge tFormatted EndDate()  {
  104           re turn Batch ProcessDet ailForm.fo rmatter.fo rmat(getEn dDate());
  105       }
  106  
  107           @C olumn(name  = "JOB_EN D_DATE")
  108           pu blic Date  getEndDate () {
  109                    retu rn endDate ;
  110           }
  111  
  112           pu blic void  setEndDate (Date endD ate) {
  113                    this .endDate =  endDate;
  114           }
  115  
  116           @C olumn(name  = "JOB_ST ART_DATE")
  117           pu blic Date  getStartDa te() {
  118                    retu rn startDa te;
  119           }
  120  
  121           pu blic void  setStartDa te(Date st artDate) {
  122                    this .startDate  = startDa te;
  123           }
  124  
  125           @C olumn(name  = "JOB_ST ATUS_CODE" )
  126           pu blic Strin g getJobSt atus() {
  127                    retu rn jobStat us;
  128           }
  129  
  130           pu blic void  setJobStat us(String  jobStatus)  {
  131                    this .jobStatus  = jobStat us;
  132           }
  133  
  134   }