58. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/21/2017 6:15:14 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.

58.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v7_bld7.zip\TS\Service\testing\cli-test-scripts\src\main\java\gov\va\genisis2 TripleExistDTO.java Thu Dec 14 19:57:07 2017 UTC
2 Genisis_2.0_v7_bld7.zip\TS\Service\testing\cli-test-scripts\src\main\java\gov\va\genisis2 TripleExistDTO.java Thu Dec 21 22:19:15 2017 UTC

58.2 Comparison summary

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

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

58.4 Active regular expressions

No regular expressions were active.

58.5 Comparison detail

  1   package go v.va.genis is2;
  2  
  3   import jav a.io.Seria lizable;
  4  
  5   import gov .va.genisi s2.ts.comm on.dto.Tri pleDTO;
  6  
  7   /**
  8    * 
  9    * @author   PII
  10    *
  11    */
  12   public cla ss TripleE xistDTO im plements S erializabl e {
  13  
  14           pr ivate stat ic final l ong serial VersionUID  = 1L;
  15           
  16           pr ivate Trip leDTO trip le;
  17           pr ivate bool ean alread yExists;
  18           /* *
  19            *  @return t he triple
  20            * /
  21           pu blic Tripl eDTO getTr iple() {
  22                    retu rn triple;
  23           }
  24           /* *
  25            *  @param tr iple the t riple to s et
  26            * /
  27           pu blic void  setTriple( TripleDTO  triple) {
  28                    this .triple =  triple;
  29           }
  30           /* *
  31            *  @return t he already Exists
  32            * /
  33           pu blic boole an isAlrea dyExists()  {
  34                    retu rn already Exists;
  35           }
  36           /* *
  37            *  @param al readyExist s the alre adyExists  to set
  38            * /
  39           pu blic void  setAlready Exists(boo lean alrea dyExists)  {
  40                    this .alreadyEx ists = alr eadyExists ;
  41           }
  42  
  43   }