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

49.1 Files compared

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

49.2 Comparison summary

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

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

49.4 Active regular expressions

No regular expressions were active.

49.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r esponse;
  5  
  6   /**
  7    * @author  
D NS     GANGAV
  8    *
  9    */
  10   public cla ss Encrypt UrlRespons e {
  11  
  12           St ring encod edPostBack Url;
  13  
  14           St ring encod edCaptured Url;
  15           
  16           St ring sessi onInformat ion;
  17  
  18           /* *
  19            *  
  20            * /
  21           pu blic Encry ptUrlRespo nse() {
  22                    supe r();
  23                    // T ODO Auto-g enerated c onstructor  stub
  24           }
  25  
  26           /* *
  27            *  @param en codedPostB ackUrl
  28            *  @param en codedCaptu redUrl
  29            * /
  30           pu blic Encry ptUrlRespo nse(String  encodedPo stBackUrl,  String en codedCaptu redUrl) {
  31                    supe r();
  32                    this .encodedPo stBackUrl  = encodedP ostBackUrl ;
  33                    this .encodedCa pturedUrl  = encodedC apturedUrl ;
  34           }
  35           
  36           
  37  
  38           /* *
  39            *  @param en codedPostB ackUrl
  40            *  @param en codedCaptu redUrl
  41            *  @param se ssionInfor mation
  42            * /
  43           pu blic Encry ptUrlRespo nse(String  encodedPo stBackUrl,  String en codedCaptu redUrl, St ring sessi onInformat ion) {
  44                    supe r();
  45                    this .encodedPo stBackUrl  = encodedP ostBackUrl ;
  46                    this .encodedCa pturedUrl  = encodedC apturedUrl ;
  47                    this .sessionIn formation  = sessionI nformation ;
  48           }
  49  
  50           /* *
  51            *  @return t he encoded PostBackUr l
  52            * /
  53           pu blic Strin g getEncod edPostBack Url() {
  54                    retu rn encoded PostBackUr l;
  55           }
  56  
  57           /* *
  58            *  @param en codedPostB ackUrl
  59            *              the enco dedPostBac kUrl to se t
  60            * /
  61           pu blic void  setEncoded PostBackUr l(String e ncodedPost BackUrl) {
  62                    this .encodedPo stBackUrl  = encodedP ostBackUrl ;
  63           }
  64  
  65           /* *
  66            *  @return t he encoded CapturedUr l
  67            * /
  68           pu blic Strin g getEncod edCaptured Url() {
  69                    retu rn encoded CapturedUr l;
  70           }
  71  
  72           /* *
  73            *  @param en codedCaptu redUrl
  74            *              the enco dedCapture dUrl to se t
  75            * /
  76           pu blic void  setEncoded CapturedUr l(String e ncodedCapt uredUrl) {
  77                    this .encodedCa pturedUrl  = encodedC apturedUrl ;
  78           }
  79  
  80           /* *
  81            *  @return t he session Informatio n
  82            * /
  83           pu blic Strin g getSessi onInformat ion() {
  84                    retu rn session Informatio n;
  85           }
  86  
  87           /* *
  88            *  @param se ssionInfor mation the  sessionIn formation  to set
  89            * /
  90           pu blic void  setSession Informatio n(String s essionInfo rmation) {
  91                    this .sessionIn formation  = sessionI nformation ;
  92           }
  93           
  94           
  95  
  96   }