85. EPMO Open Source Coordination Office Redaction File Detail Report

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

85.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\response CodeAndModifierResponse.java Tue Apr 24 14:50:47 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\response CodeAndModifierResponse.java Thu Apr 26 15:59:07 2018 UTC

85.2 Comparison summary

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

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

85.4 Active regular expressions

No regular expressions were active.

85.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r esponse;
  5  
  6   import com .fasterxml .jackson.a nnotation. JsonInclud e;
  7  
  8   /**
  9    * @author   PI I
  10    *
  11    */
  12   public cla ss CodeAnd ModifierRe sponse {
  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 Response()  {
  25           }
  26  
  27           /* *
  28            *  @param cd
  29            *  @param st cCd
  30            *  @param st cCdDesc
  31            *  @param fl ag
  32            * /
  33           pu blic CodeA ndModifier Response(L ong cd, St ring stcCd , String s tcCdDesc,  boolean fl ag) {
  34                    supe r();
  35                    this .cd = cd;
  36                    this .stcCd = s tcCd;
  37                    this .stcCdDesc  = stcCdDe sc;
  38                    this .flag = fl ag;
  39           }
  40  
  41           /* *
  42            *  @return t he cd
  43            * /
  44           pu blic Long  getCd() {
  45                    retu rn cd;
  46           }
  47  
  48           /* *
  49            *  @param cd
  50            *              the cd t o set
  51            * /
  52           pu blic void  setCd(Long  cd) {
  53                    this .cd = cd;
  54           }
  55  
  56           /* *
  57            *  @return t he stcCd
  58            * /
  59           pu blic Strin g getStcCd () {
  60                    retu rn stcCd;
  61           }
  62  
  63           /* *
  64            *  @param st cCd
  65            *              the stcC d to set
  66            * /
  67           pu blic void  setStcCd(S tring stcC d) {
  68                    this .stcCd = s tcCd;
  69           }
  70  
  71           /* *
  72            *  @return t he stcCdDe sc
  73            * /
  74           pu blic Strin g getStcCd Desc() {
  75                    retu rn stcCdDe sc;
  76           }
  77  
  78           /* *
  79            *  @param st cCdDesc
  80            *              the stcC dDesc to s et
  81            * /
  82           pu blic void  setStcCdDe sc(String  stcCdDesc)  {
  83                    this .stcCdDesc  = stcCdDe sc;
  84           }
  85  
  86           /* *
  87            *  @return t he flag
  88            * /
  89           pu blic boole an isFlag( ) {
  90                    retu rn flag;
  91           }
  92  
  93           /* *
  94            *  @param fl ag
  95            *              the flag  to set
  96            * /
  97           pu blic void  setFlag(bo olean flag ) {
  98                    this .flag = fl ag;
  99           }
  100  
  101           @O verride
  102           pu blic Strin g toString () {
  103                    retu rn String. format("Co deAndModif ierRespons e: Cd: %s     stcCd:  %s    stcC dDesc: %s     flag: % s", cd, st cCd,
  104                                      stcCdDes c, flag);
  105           }
  106   }