4255. EPMO Open Source Coordination Office Redaction File Detail Report

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

4255.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:24 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-web\src\main\java\gov\va\nvap\web\announce BatchAnnouncementsUpload.java Fri Apr 21 20:03:30 2017 UTC

4255.2 Comparison summary

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

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

4255.4 Active regular expressions

No regular expressions were active.

4255.5 Comparison detail

        1   package go v.va.nvap. web.announ ce;
        2  
        3   import gov .va.nvap.w eb.app.Res ponseDispa tcherHttpS ervlet;
        4   import gov .va.nvap.w eb.helper. privacy.Co nsentManag ementHelpe r;
        5  
        6   import jav a.io.IOExc eption;
        7  
        8   import jav ax.servlet .ServletEx ception;
        9   import jav ax.servlet .http.Http ServletReq uest;
        10   import jav ax.servlet .http.Http ServletRes ponse;
        11   import jav ax.servlet .http.Http Session;
        12  
        13   /**
        14    * @author  Nusrath M ohammed
        15    */
        16   public cla ss BatchAn nouncement sUpload ex tends Resp onseDispat cherHttpSe rvlet {
        17  
        18           /* *
        19            *  Serial UI D.
        20            * /
        21           pr ivate stat ic final l ong serial VersionUID  = 8860158 6867822756 98L;
        22  
        23           pu blic Conse ntManageme ntHelper g etCmsHelpe r() {
        24                    fina l ConsentM anagementH elper cmsH elper = th is.getBean ("cmsHelpe r",
        25                                      ConsentM anagementH elper.clas s);
        26                    retu rn cmsHelp er;
        27           }
        28  
        29           pu blic void  next(final  HttpServl etRequest  request,
        30                             final  HttpServle tResponse  response)  throws Ser vletExcept ion,
        31                             IOExce ption {
        32                    fina l HttpSess ion sessio n = reques t.getSessi on(false);
        33                    fina l String f ileName =  request.ge tParameter ("fileName ");
        34                    
        35                    
        36                    this .forward(r equest, re sponse, "s uccess");
        37                    
        38           }
        39  
        40           @O verride
        41           pr otected vo id unspeci fied(final  HttpServl etRequest  request,
        42                             final  HttpServle tResponse  response)  throws Ser vletExcept ion,
        43                             IOExce ption {
        44                    fina l HttpSess ion sessio n = reques t.getSessi on(false);
        45  
        46                    
        47  
        48                    this .forward(r equest, re sponse, "s how");
        49           }
        50  
        51   }