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

78.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ewv\bean ArchivedPdfReference.java Wed Mar 27 19:21:12 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ewv\bean ArchivedPdfReference.java Thu Mar 28 17:50:58 2019 UTC

78.2 Comparison summary

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

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

78.4 Active regular expressions

No regular expressions were active.

78.5 Comparison detail

  1   package go v.va.med.e wv.bean;
  2  
  3   import jav a.util.Arr ays;
  4  
  5   import org .springfra mework.web .multipart .Multipart File;
  6  
  7   import com .fasterxml .jackson.a nnotation. JsonInclud e;
  8  
  9   /**
  10    * Contain s the appr opriate in formation  to identif y which PD F Referenc
  11    * in the  database w ill be mar ked as arc hived.
  12    * 
  13    * @author   DN S      PEREZF
  14    *
  15    */
  16   public cla ss Archive dPdfRefere nce {
  17           
  18           /* *
  19            *  Refers to  the Refer ence File  Name that  has the PD F file. It 's the
  20            *  absolute  path file  name of th e PDF file .
  21            * /
  22           pr ivate Stri ng href;
  23           
  24           /* *
  25            *  Refers to  the Refer ence Name  of the PDF  Reference  file. It' s a short  title
  26            *  descripti on of the  PDF file. 
  27            * /
  28           pr ivate Stri ng alt;
  29           
  30           /* *
  31            *  The Uniqu e Identifi er of the  PDF Refere nce stored  in the da tabase.
  32            * /
  33           pr ivate Stri ng guid;
  34            
  35           /* *
  36            *  Flag used  to indica te if a PD F Referenc e stored i n the data base
  37            *  has been  archived o r not. Wil l contain  the follow ing two va lues:
  38            *  1) "true"  - PDF Ref erence is  in the Arc hived stat e
  39            *  2) "false " - PDF Re ference is  NOT in th e Archived  state
  40            * /
  41           pr ivate Stri ng archive ;
  42  
  43           /* *
  44            *  Gets the  Reference  File Name  of the PDF  Reference  file.
  45            *  
  46            *  @return -  the Refer ence File  Name of th e PDF Refe rence file
  47            * /
  48           pu blic Strin g getHref( ) {
  49                    retu rn href;
  50           }
  51           
  52           /* *
  53            *  Sets the  Reference  File Name  of the PDF  Reference  file.
  54            *  
  55            *  @param hr ef - the R eference F ile Name t o set for  the PDF Re ference fi le
  56            * /
  57           pu blic void  setHref(St ring href)  {
  58                    this .href = hr ef;
  59           }
  60           
  61           /* *
  62            *  Gets the  Reference  Name of th e PDF Refe rence file .
  63            *  
  64            *  @return -  the Refer ence Name  of the PDF  Reference  file
  65            * /
  66           pu blic Strin g getAlt()  {
  67                    retu rn alt;
  68           }
  69           
  70           /* *
  71            *  Sets the  Reference  Name of th e PDF Refe rence file .
  72            *  
  73            *  @param al t - the Re ference Na me to set  for the PD F Referenc e file
  74            * /
  75           pu blic void  setAlt(Str ing alt) {
  76                    this .alt = alt ;
  77           }
  78           
  79           /* *
  80            *  Gets the  Archive st ate of the  PDF Refer ence.
  81            *  
  82            *  @return -  the Archi ve state o f the PDF  Reference
  83            * /
  84           pu blic Strin g getArchi ve() {
  85                    retu rn archive ;
  86           }
  87           
  88           /* *
  89            *  Sets the  Archive st ate of the  PDF Refer ence.
  90            *  
  91            *  @param ar chive - th e Archive  state to s et for the  PDF Refer ence
  92            * /
  93           pu blic void  setArchive (String ar chive) {
  94                    this .archive =  archive;
  95           }
  96  
  97           /* *
  98            *  Gets the  Unique GUI D Identifi er for the  PDF Refer ence store d in the d atabase.
  99            *  
  100            *  @return -  the Uniqu e GUID Ide ntifier fo r the PDF  Reference  stored in  the databa se
  101            * /
  102           pu blic Strin g getGuid( ) {
  103                    retu rn guid;
  104           }
  105  
  106           /* *
  107            *  Sets the  Unique GUI D Identifi er for the  PDF Refer ence store d in the d atabase.
  108            *  
  109            *  @param gu id - the U nique GUID  Identifie r to set f or the PDF  Reference  stored in  the datab ase
  110            * /
  111           pu blic void  setGuid(St ring guid)  {
  112                    this .guid = gu id;
  113           }
  114    
  115    
  116   }
  117