4281. EPMO Open Source Coordination Office Redaction File Detail Report

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

4281.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:25 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\entities PurposeOfUse.java Fri Apr 21 20:03:30 2017 UTC

4281.2 Comparison summary

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

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

4281.4 Active regular expressions

No regular expressions were active.

4281.5 Comparison detail

        1   package go v.va.nvap. web.entiti es;
        2  
        3   import jav a.io.Seria lizable;
        4   import jav ax.persist ence.*;
        5  
        6   /**
        7    * The per sistent cl ass for th e PURPOSE_ OF_USE dat abase tabl e.
        8    * @author  Sridhar V arma Allur i
        9    * @since  12/16/2014
        10    */
        11  
        12   @Entity (n ame="Entit yPOU")
        13   @Table(nam e="PURPOSE _OF_USE")
        14   public cla ss Purpose OfUse impl ements Ser ializable  {
        15           pr ivate stat ic final l ong serial VersionUID  = 1L;
        16  
        17           @I d
        18           @C olumn(name ="POU_ID")
        19           pr ivate long  pouId;
        20  
        21           @C olumn(name ="POU_VALU E")
        22           pr ivate Stri ng pouValu e;
        23  
        24           pr ivate Stri ng urn;
        25           
        26           pu blic Purpo seOfUse()  {
        27           }
        28  
        29           pu blic long  getPouId()  {
        30                    retu rn this.po uId;
        31           }
        32  
        33           pu blic void  setPouId(l ong pouId)  {
        34                    this .pouId = p ouId;
        35           }
        36  
        37           pu blic Strin g getPouVa lue() {
        38                    retu rn this.po uValue;
        39           }
        40  
        41           pu blic void  setPouValu e(String p ouValue) {
        42                    this .pouValue  = pouValue ;
        43           }
        44  
        45           pu blic Strin g getUrn()  {
        46                    retu rn this.ur n;
        47           }
        48  
        49           pu blic void  setUrn(Str ing urn) {
        50                    this .urn = urn ;
        51           }
        52   }