28. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 8/22/2017 3:39:50 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.

28.1 Files compared

# Location File Last Modified
1 PRE-Inbound-eRx-2.0.4.056.zip\PRE-Inbound-eRx-2.0.4.056\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde EmailCollection.java Fri Aug 26 22:28:58 2016 UTC
2 PRE-Inbound-eRx-2.0.4.056.zip\PRE-Inbound-eRx-2.0.4.056\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde EmailCollection.java Tue Aug 22 16:14:29 2017 UTC

28.2 Comparison summary

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

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

28.4 Active regular expressions

No regular expressions were active.

28.5 Comparison detail

  1  
  2   package go v.va.med.p harmacy.ws clients.eA nde;
  3  
  4   import jav a.util.Arr ayList;
  5   import jav a.util.Lis t;
  6   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  7   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  8   import jav ax.xml.bin d.annotati on.XmlElem ent;
  9   import jav ax.xml.bin d.annotati on.XmlType ;
  10  
  11  
  12   /**
  13    * <p>Java  class for  emailColl ection com plex type.
  14    * 
  15    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  16    * 
  17    * <pre>
  18    * &lt;com plexType n ame="email Collection "&gt;
  19    *   &lt;c omplexCont ent&gt;
  20    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "&gt;
  21    *       & lt;sequenc e&gt;
  22    *           &lt;elemen t name="em ail" type= "{http://j axws.webse rvices.esr . URL         /schemas}e mailInfo"  maxOccurs= "unbounded " minOccur s="0"/&gt;
  23    *       & lt;/sequen ce&gt;
  24    *     &lt ;/restrict ion&gt;
  25    *   &lt;/ complexCon tent&gt;
  26    * &lt;/co mplexType& gt;
  27    * </pre>
  28    * 
  29    * 
  30    */
  31   @XmlAccess orType(Xml AccessType .FIELD)
  32   @XmlType(n ame = "ema ilCollecti on", propO rder = {
  33       "email "
  34   })
  35   public cla ss EmailCo llection {
  36  
  37       @XmlEl ement(nill able = tru e)
  38       protec ted List<E mailInfo>  email;
  39  
  40       /**
  41        * Get s the valu e of the e mail prope rty.
  42        * 
  43        * <p>
  44        * Thi s accessor  method re turns a re ference to  the live  list,
  45        * not  a snapsho t. Therefo re any mod ification  you make t o the
  46        * ret urned list  will be p resent ins ide the JA XB object.
  47        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the emai l property .
  48        * 
  49        * <p>
  50        * For  example,  to add a n ew item, d o as follo ws:
  51        * <pr e>
  52        *     getEmail() .add(newIt em);
  53        * </p re>
  54        * 
  55        * 
  56        * <p>
  57        * Obj ects of th e followin g type(s)  are allowe d in the l ist
  58        * {@l ink EmailI nfo }
  59        * 
  60        * 
  61        */
  62       public  List<Emai lInfo> get Email() {
  63           if  (email ==  null) {
  64                email =  new ArrayL ist<EmailI nfo>();
  65           }
  66           re turn this. email;
  67       }
  68  
  69   }