24. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/24/2017 5:17:18 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.

24.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\persistence\jdbc\helper ParameterEntry.java Thu Feb 11 17:10:26 2016 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\persistence\jdbc\helper ParameterEntry.java Fri Mar 24 20:31:43 2017 UTC

24.2 Comparison summary

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

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

24.4 Active regular expressions

No regular expressions were active.

24.5 Comparison detail

  1   package go v.va.med.d omain.pers istence.jd bc.helper;
  2  
  3   /**
  4    * Paramet erEntry
  5    *
  6    * @author  
P II
  7    * @versio n $Id: Par ameterEntr y.java,v 1 .1.1.1 200 5/05/13 19 :40:39 jon .crater Ex p $
  8    * @since  MHV 2.0 <b r>Mar 1, 2 005
  9    */
  10   public cla ss Paramet erEntry
  11   {
  12           pr ivate long  endpointI d;
  13           pr ivate Stri ng descrip tion;
  14           pr ivate Stri ng value;
  15           /* *
  16            *  @return R eturns the  descripti on.
  17            * /
  18           pu blic Strin g getDescr iption() {
  19                    retu rn descrip tion;
  20           }
  21           /* *
  22            *  @param de scription  The descri ption to s et.
  23            * /
  24           pu blic void  setDescrip tion(Strin g descript ion) {
  25                    this .descripti on = descr iption;
  26           }
  27           /* *
  28            *  @return R eturns the  endpointI d.
  29            * /
  30           pu blic long  getEndpoin tId() {
  31                    retu rn endpoin tId;
  32           }
  33           /* *
  34            *  @param en dpointId T he endpoin tId to set .
  35            * /
  36           pu blic void  setEndpoin tId(long e ndpointId)  {
  37                    this .endpointI d = endpoi ntId;
  38           }
  39           /* *
  40            *  @return R eturns the  value.
  41            * /
  42           pu blic Strin g getValue () {
  43                    retu rn value;
  44           }
  45           /* *
  46            *  @param va lue The va lue to set .
  47            * /
  48           pu blic void  setValue(S tring valu e) {
  49                    this .value = v alue;
  50           }
  51   }