4006. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:12 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.

4006.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:12 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-server\src\test\java\gov\va\nvap\server\test\endpoint\esr MockESRServiceEndpoint.java Fri Apr 21 20:03:28 2017 UTC

4006.2 Comparison summary

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

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

4006.4 Active regular expressions

No regular expressions were active.

4006.5 Comparison detail

        1   package go v.va.nvap. server.tes t.endpoint .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(GetE ESummaryRe quest requ est) {
        14                    Obje ctFactory  objFactory  = new Obj ectFactory ();
        15                    GetE ESummaryRe sponse res ponse = ob jFactory.c reateGetEE SummaryRes ponse();
        16                    EeSu mmary eeSu mmary = ob jFactory.c reateEeSum mary();
        17                    resp onse.setSu mmary(eeSu mmary);
        18                    Demo graphicInf o demograp hicInfo =  objFactory .createDem ographicIn fo();
        19                    eeSu mmary.setD emographic s(demograp hicInfo);
        20                    Syst em.out.pri ntln("MOCK ");
        21                    demo graphicInf o.setPrefe rredFacili ty("998 -  VA Facilit y 1");
        22                    retu rn respons e;
        23           }
        24  
        25   }