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

41.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 DecryptionRequest.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\request DecryptionRequest.java Thu Mar 28 17:50:44 2019 UTC

41.2 Comparison summary

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

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

41.4 Active regular expressions

No regular expressions were active.

41.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r equest;
  5  
  6   import com .fasterxml .jackson.a nnotation. JsonInclud e;
  7  
  8   /**
  9    * @author  
D NS     GANGAV
  10    *
  11    */
  12   public cla ss Decrypt ionRequest  {
  13  
  14           St ring getNt name;
  15           
  16           @J sonInclude (JsonInclu de.Include .NON_NULL)
  17           St ring attac hmentId;
  18  
  19           /* *
  20            *  
  21            * /
  22           pu blic Decry ptionReque st() {
  23                    supe r();
  24                    // T ODO Auto-g enerated c onstructor  stub
  25           }
  26  
  27           /* *
  28            *  @param ge tNtname
  29            * /
  30           pu blic Decry ptionReque st(String  getNtname)  {
  31                    supe r();
  32                    this .getNtname  = getNtna me;
  33           }
  34  
  35           /* *
  36            *  @param ge tNtname
  37            *  @param at tachmentId
  38            * /
  39           pu blic Decry ptionReque st(String  getNtname,  String at tachmentId ) {
  40                    supe r();
  41                    this .getNtname  = getNtna me;
  42                    this .attachmen tId = atta chmentId;
  43           }
  44  
  45           /* *
  46            *  @return t he getNtna me
  47            * /
  48           pu blic Strin g getGetNt name() {
  49                    retu rn getNtna me;
  50           }
  51  
  52           /* *
  53            *  @param ge tNtname
  54            *              the getN tname to s et
  55            * /
  56           pu blic void  setGetNtna me(String  getNtname)  {
  57                    this .getNtname  = getNtna me;
  58           }
  59  
  60           /* *
  61            *  @return t he attachm entId
  62            * /
  63           pu blic Strin g getAttac hmentId()  {
  64                    retu rn attachm entId;
  65           }
  66  
  67           /* *
  68            *  @param at tachmentId
  69            *              the atta chmentId t o set
  70            * /
  71           pu blic void  setAttachm entId(Stri ng attachm entId) {
  72                    this .attachmen tId = atta chmentId;
  73           }
  74  
  75   }