3116. EPMO Open Source Coordination Office Redaction File Detail Report

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

3116.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:48 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-client\src\main\java\gov\va\nvap\service\forms FormsStorageService.java Fri Apr 21 20:03:26 2017 UTC

3116.2 Comparison summary

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

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

3116.4 Active regular expressions

No regular expressions were active.

3116.5 Comparison detail

        1   package go v.va.nvap. service.fo rms;
        2  
        3   import jav a.util.Lis t;
        4   import jav ax.jws.Web Method;
        5   import jav ax.jws.Web Param;
        6   import jav ax.jws.Web Result;
        7   import jav ax.jws.Web Service;
        8  
        9   /**
        10    *
        11    * @since  01/06/2016
        12    * @author  Elan
        13    */
        14   @WebServic e
        15   public int erface For msStorageS ervice {
        16  
        17       @WebMe thod
        18       @WebRe sult(name  = "DocID")
        19       Long a ddPatientF orm(@WebPa ram(name =  "patientI D") final  String pat ientID,
        20           @W ebParam(na me = "docu ment") fin al String  document,
        21           @W ebParam(na me = "docu mentType")  final Str ing docume ntType)
        22           th rows Forms StorageExc eption;
        23  
        24       @WebMe thod
        25       @WebRe sult(name  = "FormLis t")
        26       List<L ong> getPa tientFormI Ds(@WebPar am(name =  "patientID ") final S tring pati entID,
        27           @W ebParam(na me = "docu mentType")  final Str ing docume ntType)
        28           th rows Forms StorageExc eption;
        29  
        30       @WebMe thod
        31       @WebRe sult(name  = "Patient Form")
        32       Patien tForm getP atientForm (@WebParam (name = "d ocID") fin al Long do cID)
        33           th rows Forms StorageExc eption;
        34  
        35       @WebMe thod
        36       @WebRe sult(name  = "Patient Form")
        37       Patien tForm getL atestPatie ntForm(@We bParam(nam e = "patie ntID") fin al String  patientID,
        38           @W ebParam(na me = "docu mentType")  final Str ing docume ntType)
        39           th rows Forms StorageExc eption;
        40  
        41   }