79. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2018 2:59:09 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.

79.1 Files compared

# Location File Last Modified
1 v2.0_Sprint_15_Build_5.zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request CodeAndModifierRequest.java Tue Apr 24 14:50:46 2018 UTC
2 v2.0_Sprint_15_Build_5..zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\request CodeAndModifierRequest.java Thu Apr 26 15:54:29 2018 UTC

79.2 Comparison summary

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

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

79.4 Active regular expressions

No regular expressions were active.

79.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   PI I
  10    *
  11    */
  12   public cla ss CodeAnd ModifierRe quest {
  13  
  14           pr ivate Long  cd;
  15           pr ivate Stri ng stcCd;
  16           pr ivate Stri ng stcCdDe sc;
  17  
  18           @J sonInclude (JsonInclu de.Include .NON_NULL)
  19           pr ivate bool ean flag;
  20  
  21           /* *
  22            *  
  23            * /
  24           pu blic CodeA ndModifier Request()  {
  25                    supe r();
  26                    // T ODO Auto-g enerated c onstructor  stub
  27           }
  28  
  29           /* *
  30            *  @param cd
  31            *  @param st cCd
  32            *  @param st cCdDesc
  33            *  @param fl ag
  34            * /
  35           pu blic CodeA ndModifier Request(Lo ng cd, Str ing stcCd,  String st cCdDesc, b oolean fla g) {
  36                    supe r();
  37                    this .cd = cd;
  38                    this .stcCd = s tcCd;
  39                    this .stcCdDesc  = stcCdDe sc;
  40                    this .flag = fl ag;
  41           }
  42  
  43           /* *
  44            *  @return t he cd
  45            * /
  46           pu blic Long  getCd() {
  47                    retu rn cd;
  48           }
  49  
  50           /* *
  51            *  @param cd
  52            *              the cd t o set
  53            * /
  54           pu blic void  setCd(Long  cd) {
  55                    this .cd = cd;
  56           }
  57  
  58           /* *
  59            *  @return t he stcCd
  60            * /
  61           pu blic Strin g getStcCd () {
  62                    retu rn stcCd;
  63           }
  64  
  65           /* *
  66            *  @param st cCd
  67            *              the stcC d to set
  68            * /
  69           pu blic void  setStcCd(S tring stcC d) {
  70                    this .stcCd = s tcCd;
  71           }
  72  
  73           /* *
  74            *  @return t he stcCdDe sc
  75            * /
  76           pu blic Strin g getStcCd Desc() {
  77                    retu rn stcCdDe sc;
  78           }
  79  
  80           /* *
  81            *  @param st cCdDesc
  82            *              the stcC dDesc to s et
  83            * /
  84           pu blic void  setStcCdDe sc(String  stcCdDesc)  {
  85                    this .stcCdDesc  = stcCdDe sc;
  86           }
  87  
  88           /* *
  89            *  @return t he flag
  90            * /
  91           pu blic boole an isFlag( ) {
  92                    retu rn flag;
  93           }
  94  
  95           /* *
  96            *  @param fl ag
  97            *              the flag  to set
  98            * /
  99           pu blic void  setFlag(bo olean flag ) {
  100                    this .flag = fl ag;
  101           }
  102  
  103           @O verride
  104           pu blic Strin g toString () {
  105                    retu rn String. format("Co deAndModif ierRequest : Cd: %s     stcCd: % s    stcCd Desc: %s     flag: %s ", cd, stc Cd,
  106                                      stcCdDes c, flag);
  107           }
  108  
  109   }