559. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/5/2017 4:25:30 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.

559.1 Files compared

# Location File Last Modified
1 C:\working_scrub\Unredacted\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas AssociationCollection.java Wed Feb 1 18:37:28 2017 UTC
2 eHX-CIF.zip\eHX-CIF\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\esr\webservices\jaxws\schemas AssociationCollection.java Mon Apr 3 14:02:39 2017 UTC

559.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 122
Changed 2 4
Inserted 0 0
Removed 0 0

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

559.4 Active regular expressions

No regular expressions were active.

559.5 Comparison detail

  1  
  2   package go v.va.med.e sr.webserv ices.jaxws .schemas;
  3  
  4   import jav ax.xml.bin d.JAXBElem ent;
  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.XmlElem entRef;
  8   import jav ax.xml.bin d.annotati on.XmlType ;
  9  
  10  
  11   /**
  12    * <p>Java  class for  associati onCollecti on complex  type.
  13    * 
  14    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  15    * 
  16    * <pre>
  17    * &lt;com plexType n ame="assoc iationColl ection">
  18    *   &lt;c omplexCont ent>
  19    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
  20    *       & lt;all>
  21    *           &lt;elemen t name="as sociation"  type="{ht tp://jaxws .webservic es.esr. URL         /schemas}a ssociation Info" minO ccurs="0"/ >
  22    *       & lt;/all>
  23    *     &lt ;/restrict ion>
  24    *   &lt;/ complexCon tent>
  25    * &lt;/co mplexType>
  26    * </pre>
  27    * 
  28    * 
  29    */
  30   @XmlAccess orType(Xml AccessType .FIELD)
  31   @XmlType(n ame = "ass ociationCo llection",  propOrder  = {
  32  
  33   })
  34   public cla ss Associa tionCollec tion {
  35  
  36         @XmlElemen tRef(name  = "associa tion", nam espace = " http://jax ws.webserv ices.esr. URL         /schemas",  type = JA XBElement. class)
  37       protec ted JAXBEl ement<Asso ciationInf o> associa tion;
  38  
  39       /**
  40        * Get s the valu e of the a ssociation  property.
  41        * 
  42        * @re turn
  43        *      possible  object is
  44        *      {@link JA XBElement  }{@code <} {@link Ass ociationIn fo }{@code  >}
  45        *      
  46        */
  47       public  JAXBEleme nt<Associa tionInfo>  getAssocia tion() {
  48           re turn assoc iation;
  49       }
  50  
  51       /**
  52        * Set s the valu e of the a ssociation  property.
  53        * 
  54        * @pa ram value
  55        *      allowed o bject is
  56        *      {@link JA XBElement  }{@code <} {@link Ass ociationIn fo }{@code  >}
  57        *      
  58        */
  59       public  void setA ssociation (JAXBEleme nt<Associa tionInfo>  value) {
  60           th is.associa tion = ((J AXBElement <Associati onInfo> )  value);
  61       }
  62  
  63   }