3798. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:50:36 PM Eastern 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.

3798.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:36 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-mock\src\main\java\gov\va\nvap\mock\endpoint\esr MockESRServiceEndpoint.java Fri Apr 21 20:03:28 2017 UTC

3798.2 Comparison summary

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

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

3798.4 Active regular expressions

No regular expressions were active.

3798.5 Comparison detail

        1   package go v.va.nvap. mock.endpo int.esr;
        2  
        3   import gov .va.med.es r.webservi ces.jaxws. schemas.De mographicI nfo;
        4   import gov .va.med.es r.webservi ces.jaxws. schemas.Ee Summary;
        5   import gov .va.med.es r.webservi ces.jaxws. schemas.Ge tEESummary Request;
        6   import gov .va.med.es r.webservi ces.jaxws. schemas.Ge tEESummary Response;
        7   import gov .va.med.es r.webservi ces.jaxws. schemas.Ob jectFactor y;
        8   import gov .va.nvap.s ervice.esr .Enrollmen tService;
        9  
        10   public cla ss MockESR ServiceEnd point impl ements Enr ollmentSer vice {
        11  
        12           @O verride
        13           pu blic GetEE SummaryRes ponse getE ESummaryRe quest(
        14                             final  GetEESumma ryRequest  request) {
        15                    fina l ObjectFa ctory objF actory = n ew ObjectF actory();
        16                    fina l GetEESum maryRespon se respons e = objFac tory
        17                                      .createG etEESummar yResponse( );
        18                    fina l EeSummar y eeSummar y = objFac tory.creat eEeSummary ();
        19                    resp onse.setSu mmary(eeSu mmary);
        20                    fina l Demograp hicInfo de mographicI nfo = objF actory
        21                                      .createD emographic Info();
        22                    eeSu mmary.setD emographic s(demograp hicInfo);
        23                    Syst em.out.pri ntln("MOCK ");
        24                    demo graphicInf o.setPrefe rredFacili ty("998 -  VA Facilit y 1");
        25                    retu rn respons e;
        26           }
        27  
        28   }