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

48.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 CodeAndModifierResponse.java Wed Mar 27 19:22:45 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\model\response CodeAndModifierResponse.java Thu Mar 28 17:50:46 2019 UTC

48.2 Comparison summary

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

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

48.4 Active regular expressions

No regular expressions were active.

48.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.model.r esponse;
  5  
  6  
  7  
  8   import com .fasterxml .jackson.a nnotation. JsonInclud e;
  9  
  10   /**
  11    * @author  
D NS     GANGAV
  12    *
  13    */
  14   public cla ss CodeAnd ModifierRe sponse {
  15  
  16           pr ivate Long  cd;
  17           pr ivate Stri ng stcCd;
  18           pr ivate Stri ng stcCdDe sc;
  19       privat e String s tartDate;
  20       privat e String e ndDate;
  21           @J sonInclude (JsonInclu de.Include .NON_NULL)
  22           pr ivate bool ean flag;
  23           
  24           @J sonInclude (JsonInclu de.Include .NON_NULL)
  25           pr ivate Stri ng level; 
  26  
  27           /* *
  28            *  
  29            * /
  30           pu blic CodeA ndModifier Response()  {
  31           }
  32  
  33           /* *
  34            *  @param cd
  35            *  @param st cCd
  36            *  @param st cCdDesc
  37            *  @param st artDate
  38            *  @param en dDate
  39            *  @param fl ag
  40            * /
  41           pu blic CodeA ndModifier Response(L ong cd, St ring stcCd , String s tcCdDesc,  String sta rtDate, St ring endDa te,
  42                             boolea n flag) {
  43                    supe r();
  44                    this .cd = cd;
  45                    this .stcCd = s tcCd;
  46                    this .stcCdDesc  = stcCdDe sc;
  47                    this .startDate  = startDa te;
  48                    this .endDate =  endDate;
  49                    this .flag = fl ag;
  50           }
  51  
  52           /* *
  53            *  @return t he cd
  54            * /
  55           pu blic Long  getCd() {
  56                    retu rn cd;
  57           }
  58  
  59           /* *
  60            *  @param cd
  61            *              the cd t o set
  62            * /
  63           pu blic void  setCd(Long  cd) {
  64                    this .cd = cd;
  65           }
  66  
  67           /* *
  68            *  @return t he stcCd
  69            * /
  70           pu blic Strin g getStcCd () {
  71                    retu rn stcCd;
  72           }
  73  
  74           /* *
  75            *  @param st cCd
  76            *              the stcC d to set
  77            * /
  78           pu blic void  setStcCd(S tring stcC d) {
  79                    this .stcCd = s tcCd;
  80           }
  81  
  82           /* *
  83            *  @return t he stcCdDe sc
  84            * /
  85           pu blic Strin g getStcCd Desc() {
  86                    retu rn stcCdDe sc;
  87           }
  88  
  89           /* *
  90            *  @param st cCdDesc
  91            *              the stcC dDesc to s et
  92            * /
  93           pu blic void  setStcCdDe sc(String  stcCdDesc)  {
  94                    this .stcCdDesc  = stcCdDe sc;
  95           }
  96  
  97           /* *
  98            *  @return t he flag
  99            * /
  100           pu blic boole an isFlag( ) {
  101                    retu rn flag;
  102           }
  103  
  104           /* *
  105            *  @param fl ag
  106            *              the flag  to set
  107            * /
  108           pu blic void  setFlag(bo olean flag ) {
  109                    this .flag = fl ag;
  110           }
  111  
  112           
  113           pu blic Strin g getStart Date() {
  114                    retu rn startDa te;
  115           }
  116  
  117           pu blic void  setStartDa te(String  startDate)  {
  118                    this .startDate  = startDa te;
  119           }
  120  
  121           pu blic Strin g getEndDa te() {
  122                    retu rn endDate ;
  123           }
  124  
  125           pu blic void  setEndDate (String en dDate) {
  126                    this .endDate =  endDate;
  127           }        
  128           
  129           
  130  
  131           /* *
  132            *  @return t he level
  133            * /
  134           pu blic Strin g getLevel () {
  135                    retu rn level;
  136           }
  137  
  138           /* *
  139            *  @param le vel the le vel to set
  140            * /
  141           pu blic void  setLevel(S tring leve l) {
  142                    this .level = l evel;
  143           }
  144  
  145           @O verride
  146           pu blic Strin g toString () {
  147                    retu rn "CodeAn dModifierR esponse [c d=" + cd +  ", stcCd= " + stcCd  + ", stcCd Desc=" + s tcCdDesc +  ", startD ate="
  148                                      + startD ate + ", e ndDate=" +  endDate +  ", flag="  + flag +  "]";
  149           }
  150   }