142. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/8/2018 10:11:37 AM Eastern Standard 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.

142.1 Files compared

# Location File Last Modified
1 PRE_PPS-N_v3.0.1.zip\PS_PPS_domain\src\main\java\gov\va\med\pharmacy\peps\domain\common\utility\client\rxnorm RxNormData.java Fri Jan 12 15:42:38 2018 UTC
2 PRE_PPS-N_v3.0.1.zip\PS_PPS_domain\src\main\java\gov\va\med\pharmacy\peps\domain\common\utility\client\rxnorm RxNormData.java Wed Mar 7 01:46:47 2018 UTC

142.2 Comparison summary

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

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

142.4 Active regular expressions

No regular expressions were active.

142.5 Comparison detail

  1   package go v.va.med.p harmacy.pe ps.domain. common.uti lity.clien t.rxnorm;
  2  
  3   /**
  4    * This cl ass holds  the RxNorm  informati on retriev ed from th e ISAAC se rvice.
  5    * 
  6    * @author   DN S     D N S
  7    *
  8    */
  9   public cla ss RxNormD ata {
  10  
  11       privat e String v uid;
  12       privat e String r xcuid;
  13       privat e String p roductName ;
  14       privat e String t ty;
  15       privat e String s uppress;
  16  
  17       /**
  18        * No  arguments  constructo r.
  19        */
  20       public  RxNormDat a() {
  21           su per();
  22       }
  23  
  24       /**
  25        * Par ameterized  construct or.
  26        * 
  27        * @pa ram vuid S tring para meter.
  28        * @pa ram rxcuid  String pa rameter.
  29        * @pa ram produc tName Stri ng paramet er.
  30        * @pa ram tty St ring param eter.
  31        * @pa ram suppre ss String  parameter.
  32        */
  33       public  RxNormDat a(String v uid, Strin g rxcuid,  String pro ductName,  String tty , String s uppress) {
  34           su per();
  35           th is.vuid =  vuid;
  36           th is.rxcuid  = rxcuid;
  37           th is.product Name = pro ductName;
  38           th is.tty = t ty;
  39           th is.suppres s = suppre ss;
  40       }
  41  
  42       public  String ge tVuid() {
  43           re turn vuid;
  44       }
  45  
  46       public  void setV uid(String  vuid) {
  47           th is.vuid =  vuid;
  48       }
  49  
  50       public  String ge tRxcuid()  {
  51           re turn rxcui d;
  52       }
  53  
  54       public  void setR xcuid(Stri ng rxcuid)  {
  55           th is.rxcuid  = rxcuid;
  56       }
  57  
  58       public  String ge tTty() {
  59           re turn tty;
  60       }
  61  
  62       public  void setT ty(String  tty) {
  63           th is.tty = t ty;
  64       }
  65  
  66       public  String ge tSuppress( ) {
  67           re turn suppr ess;
  68       }
  69  
  70       public  void setS uppress(St ring suppr ess) {
  71           th is.suppres s = suppre ss;
  72       }
  73  
  74       @Overr ide
  75       public  String to String() {
  76           re turn "Vuid : " + vuid  + ", rxcu id: " + rx cuid + ",  tty: " + t ty + ", su ppress: "  + suppress  + ", name : " + prod uctName;
  77       }
  78  
  79       public  String ge tProductNa me() {
  80           re turn produ ctName;
  81       }
  82  
  83       public  void setP roductName (String pr oductName)  {
  84           th is.product Name = pro ductName;
  85       }
  86  
  87   }