42. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 1:06:54 PM Central 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.

42.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request EncryptUrl.java Wed Mar 27 19:22:48 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request EncryptUrl.java Thu Mar 28 17:50:44 2019 UTC

42.2 Comparison summary

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

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

42.4 Active regular expressions

No regular expressions were active.

42.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r equest;
  5  
  6   import jav ax.servlet .http.Http Session;
  7  
  8   /**
  9    * @author  
D NS     GANGAV
  10    *
  11    */
  12   public cla ss Encrypt Url {
  13  
  14           St ring hostn ame;
  15           St ring attac hmentId;
  16  
  17           /* *
  18            *  
  19            * /
  20           pu blic Encry ptUrl() {
  21                    supe r();
  22                    // T ODO Auto-g enerated c onstructor  stub
  23           }
  24  
  25           /* *
  26            *  @param ho stname
  27            * /
  28           pu blic Encry ptUrl(Stri ng hostnam e) {
  29                    supe r();
  30                    this .hostname  = hostname ;
  31           }
  32  
  33           /* *
  34            *  @param ho stname
  35            *  @param at tachmentId
  36            * /
  37           pu blic Encry ptUrl(Stri ng hostnam e, String  attachment Id) {
  38                    supe r();
  39                    this .hostname  = hostname ;
  40                    this .attachmen tId = atta chmentId;
  41           }
  42  
  43           /* *
  44            *  @return t he hostnam e
  45            * /
  46           pu blic Strin g getHostn ame() {
  47                    retu rn hostnam e;
  48           }
  49  
  50           /* *
  51            *  @param ho stname
  52            *              the host name to se t
  53            * /
  54           pu blic void  setHostnam e(String h ostname) {
  55                    this .hostname  = hostname ;
  56           }
  57  
  58           /* *
  59            *  @return t he attachm entId
  60            * /
  61           pu blic Strin g getAttac hmentId()  {
  62                    retu rn attachm entId;
  63           }
  64  
  65           /* *
  66            *  @param at tachmentId
  67            *              the atta chmentId t o set
  68            * /
  69           pu blic void  setAttachm entId(Stri ng attachm entId) {
  70                    this .attachmen tId = atta chmentId;
  71           }
  72  
  73   }