43. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:05 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.

43.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\term-service\src\main\java\gov\va\genisis2\ts\converter UpdateResponseConverter.java Thu Dec 14 19:57:18 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\term-service\src\main\java\gov\va\genisis2\ts\converter UpdateResponseConverter.java Wed Dec 20 20:31:03 2017 UTC

43.2 Comparison summary

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

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

43.4 Active regular expressions

No regular expressions were active.

43.5 Comparison detail

  1   package go v.va.genis is2.ts.con verter;
  2  
  3  
  4   import org .springfra mework.cor e.convert. converter. Converter;
  5   import org .springfra mework.ste reotype.Co mponent;
  6  
  7   import gov .va.genisi s2.ts.comm on.dto.Upd ateRespons eDTO;
  8   import gov .va.genisi s2.ts.serv ice.impl.U pdateRespo nse;
  9  
  10   /**
  11    * Convert er to chan ge update  responses  to DTOs
  12    * @author   PII
  13    *
  14    */
  15   @Component
  16   public cla ss UpdateR esponseCon verter imp lements Co nverter<Up dateRespon se, Update ResponseDT O> {
  17  
  18           @O verride
  19           pu blic Updat eResponseD TO convert (UpdateRes ponse sour ce) {
  20                    Upda teResponse DTO uR = n ew UpdateR esponseDTO ();
  21                    
  22                    uR.s etQuery(so urce.getQu ery());
  23                    uR.s etError(so urce.getEr ror());
  24                    uR.s etDuplicat e(source.g etDuplicat e());
  25                    retu rn uR;
  26           }
  27  
  28  
  29   }