46. EPMO Open Source Coordination Office Redaction File Detail Report

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

46.1 Files compared

# Location File Last Modified
1 cpss.zip\cpss\src\main\java\gov\va\cpss\job CbssJobProcessingConstants.java Wed Feb 1 21:07:26 2017 UTC
2 cpss.zip\cpss\src\main\java\gov\va\cpss\job CbssJobProcessingConstants.java Fri Feb 3 20:50:49 2017 UTC

46.2 Comparison summary

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

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

46.4 Active regular expressions

No regular expressions were active.

46.5 Comparison detail

  1   package go v.va.cpss. job;
  2  
  3   /**
  4    * Constan ts generic  to job pr ocessing u sed by bat ch jobs to  dynamical ly update
  5    * the job  execution  context d uring batc h operatio ns.
  6    * 
  7    * @author   D N   
  8    */
  9   @SuppressW arnings("n ls")
  10   public fin al class C bssJobProc essingCons tants {
  11  
  12           /* *
  13            *  The key t o identify  the datab ase primar y key valu e for the  batch run
  14            *  table ent ry associa ted with t he job run .
  15            * /
  16           pu blic stati c final St ring BATCH _RUN_ID_KE Y = "batch RunId";
  17  
  18           /* *
  19            *  The key t o identify  the time- stamp for  the batch  run
  20            * /
  21           pu blic stati c final St ring BATCH _RUN_TIMES TAMP_KEY =  "BatchRun Timestamp" ;
  22  
  23           /* *
  24            *  The key t o identify  the custo m batch jo b error ex it status.  Such an e rror
  25            *  allows th e job to c ontinue.
  26            * /
  27           pu blic stati c final St ring JOB_E RROR_KEY =  "JobError ";
  28  
  29           /* *
  30            *  The key t o identify  the custo m batch jo b error me ssage that  correlate s to
  31            *  the job e rror exit  status. Su ch an erro r allows t he job to  continue.
  32            * /
  33           pu blic stati c final St ring JOB_E RROR_MESSA GE_KEY = " JobErrorMe ssage";
  34  
  35           /* *
  36            *  The key t o identify  the custo m batch jo b failure  exit statu s. Such an
  37            *  error cau ses the jo b to fail.
  38            * /
  39           pu blic stati c final St ring JOB_F AILURE_KEY  = "JobFai lure";
  40  
  41           /* *
  42            *  The key t o identify  the custo m batch jo b failure  message th at correla tes
  43            *  to the jo b failure  exit statu s. Such an  error cau ses the jo b to fail.
  44            * /
  45           pu blic stati c final St ring JOB_F AILURE_MES SAGE_KEY =  "JobFailu reMessage" ;
  46  
  47           /* *
  48            *  General F ile Open F ailure Job  Exit Stat us.
  49            * /
  50           pu blic stati c final St ring FILE_ OPEN_ERROR _STATUS =  "FAILURE D URING FILE  OPEN";
  51  
  52           /* *
  53            *  General F TP Open Fa ilure Job  Exit Statu s.
  54            * /
  55           pu blic stati c final St ring FTP_O PEN_ERROR_ STATUS = " FAILURE DU RING FTP O PEN CONNEC TION";
  56  
  57           /* *
  58            *  General M emory Open  Failure J ob Exit St atus.
  59            * /
  60           pu blic stati c final St ring MEMOR Y_OPEN_ERR OR_STATUS  = "FAILURE  DURING OP EN MEMORY  MAP";
  61  
  62           /* *
  63            *  General R ead Failur e Job Exit  Status.
  64            * /
  65           pu blic stati c final St ring READ_ FAILURE_ST ATUS = "FA ILURE DURI NG READ";
  66  
  67           /* *
  68            *  General P rocessing  Failure Jo b Exit Sta tus.
  69            * /
  70           pu blic stati c final St ring PROCE SSING_FAIL URE_STATUS  = "FAILUR E DURING P ROCESSING" ;
  71  
  72           /* *
  73            *  General W rite Failu re Job Exi t Status.
  74            * /
  75           pu blic stati c final St ring WRITE _FAILURE_S TATUS = "F AILURE DUR ING WRITE" ;
  76  
  77           /* *
  78            *  General D ata Error  Job Exit S tatus.
  79            * /
  80           pu blic stati c final St ring DATA_ ERROR_STAT US = "DATA  ERROR DET ECTED";
  81  
  82           /* *
  83            *  General E mpty File  Job Exit S tatus.
  84            * /
  85           pu blic stati c final St ring EMPTY _FILE_ERRO R_STATUS =  "EMPTY IN PUT FILE";
  86  
  87           /* *
  88            *  General I ncomplete  File Job E xit Status .
  89            * /
  90           pu blic stati c final St ring INCOM PLETE_FILE _ERROR_STA TUS = "INC OMPLETE FI LE";
  91  
  92           /* *
  93            *  Default f ile extens ion that i ndicates a ssociated  file uploa d is
  94            *  successfu lly finish ed.
  95            * /
  96           pu blic stati c final St ring DEFAU LT_FILE_DO NE_EXTENSI ON = ".don ";
  97  
  98           /* *
  99            *  Default f ile extens ion for co mplete dat a files.
  100            * /
  101           pu blic stati c final St ring DEFAU LT_FILE_DA TA_EXTENSI ON = ".txt ";
  102  
  103   }