55. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2017 3:13:56 PM Eastern 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.

55.1 Files compared

# Location File Last Modified
1 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde MonetaryBenefitAwardInfo.java Fri Aug 26 21:28:58 2016 UTC
2 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde MonetaryBenefitAwardInfo.java Tue Apr 25 13:19:09 2017 UTC

55.2 Comparison summary

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

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

55.4 Active regular expressions

No regular expressions were active.

55.5 Comparison detail

  1  
  2   package go v.va.med.p harmacy.ws clients.eA nde;
  3  
  4   import jav a.math.Big Decimal;
  5   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  6   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  7   import jav ax.xml.bin d.annotati on.XmlType ;
  8  
  9  
  10   /**
  11    * <p>Java  class for  monetaryB enefitAwar dInfo comp lex type.
  12    * 
  13    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  14    * 
  15    * <pre>
  16    * &lt;com plexType n ame="monet aryBenefit AwardInfo" &gt;
  17    *   &lt;c omplexCont ent&gt;
  18    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "&gt;
  19    *       & lt;all&gt;
  20    *          &lt;eleme nt name="c heckAmount " type="{h ttp://www. w3.org/200 1/XMLSchem a}decimal"  minOccurs ="0"/&gt;
  21    *           &lt;elemen t name="mo netaryBene fits" type ="{http:// DNS . URL         /schemas}m onetaryBen efitCollec tion" minO ccurs="0"/ &gt;
  22    *       & lt;/all&gt ;
  23    *     &lt ;/restrict ion&gt;
  24    *   &lt;/ complexCon tent&gt;
  25    * &lt;/co mplexType& gt;
  26    * </pre>
  27    * 
  28    * 
  29    */
  30   @XmlAccess orType(Xml AccessType .FIELD)
  31   @XmlType(n ame = "mon etaryBenef itAwardInf o", propOr der = {
  32  
  33   })
  34   public cla ss Monetar yBenefitAw ardInfo {
  35  
  36       protec ted BigDec imal check Amount;
  37       protec ted Moneta ryBenefitC ollection  monetaryBe nefits;
  38  
  39       /**
  40        * Get s the valu e of the c heckAmount  property.
  41        * 
  42        * @re turn
  43        *      possible  object is
  44        *      {@link Bi gDecimal }
  45        *      
  46        */
  47       public  BigDecima l getCheck Amount() {
  48           re turn check Amount;
  49       }
  50  
  51       /**
  52        * Set s the valu e of the c heckAmount  property.
  53        * 
  54        * @pa ram value
  55        *      allowed o bject is
  56        *      {@link Bi gDecimal }
  57        *      
  58        */
  59       public  void setC heckAmount (BigDecima l value) {
  60           th is.checkAm ount = val ue;
  61       }
  62  
  63       /**
  64        * Get s the valu e of the m onetaryBen efits prop erty.
  65        * 
  66        * @re turn
  67        *      possible  object is
  68        *      {@link Mo netaryBene fitCollect ion }
  69        *      
  70        */
  71       public  MonetaryB enefitColl ection get MonetaryBe nefits() {
  72           re turn monet aryBenefit s;
  73       }
  74  
  75       /**
  76        * Set s the valu e of the m onetaryBen efits prop erty.
  77        * 
  78        * @pa ram value
  79        *      allowed o bject is
  80        *      {@link Mo netaryBene fitCollect ion }
  81        *      
  82        */
  83       public  void setM onetaryBen efits(Mone taryBenefi tCollectio n value) {
  84           th is.monetar yBenefits  = value;
  85       }
  86  
  87   }