3140. EPMO Open Source Coordination Office Redaction File Detail Report

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

3140.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:49 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\privacy ConsentManagementServiceFaultMessage.java Fri Apr 21 20:03:26 2017 UTC

3140.2 Comparison summary

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

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

3140.4 Active regular expressions

No regular expressions were active.

3140.5 Comparison detail

        1   package go v.va.nvap. service.pr ivacy;
        2  
        3   import gov .va.nvap.p rivacy.Con sentManage mentServic eFaultType ;
        4  
        5   import jav ax.xml.ws. WebFault;
        6  
        7   @WebFault( name = "Co nsentManag ementServi ceFault",  targetName space = "h ttp://gov. va.nvap.se rvice.priv acy/")
        8   public cla ss Consent Management ServiceFau ltMessage  extends
        9                    Cons entManagem entService Exception  {
        10  
        11           /* *
        12            *  Serial UI D.
        13            * /
        14           pr ivate stat ic final l ong serial VersionUID  = 5073017 1286568229 20L;
        15           /* *
        16            *  Java type  that goes  as soapen v:Fault de tail eleme nt.
        17            * /
        18           pr ivate fina l ConsentM anagementS erviceFaul tType faul tInfo;
        19  
        20           /* *
        21            *  @param me ssage
        22            *  @param fa ultInfo
        23            * /
        24           pu blic Conse ntManageme ntServiceF aultMessag e(final St ring messa ge,
        25                             final  ConsentMan agementSer viceFaultT ype faultI nfo) {
        26                    supe r(message) ;
        27                    this .faultInfo  = faultIn fo;
        28           }
        29  
        30           /* *
        31            *  @param me ssage
        32            *  @param fa ultInfo
        33            *  @param ca use
        34            * /
        35           pu blic Conse ntManageme ntServiceF aultMessag e(final St ring messa ge,
        36                             final  ConsentMan agementSer viceFaultT ype faultI nfo,
        37                             final  Throwable  cause) {
        38                    supe r(message,  cause);
        39                    this .faultInfo  = faultIn fo;
        40           }
        41  
        42           /* *
        43            *  @return r eturns fau lt bean:
        44            *          g ov.va.nvap .privacy.C onsentMana gementServ iceFaultTy pe
        45            * /
        46           pu blic Conse ntManageme ntServiceF aultType g etFaultInf o() {
        47                    retu rn this.fa ultInfo;
        48           }
        49  
        50   }