37588. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/17/2019 10:54:35 AM Central 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.

37588.1 Files compared

# Location File Last Modified
1 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service PersonsTO.java Wed Jan 16 16:06:32 2019 UTC
2 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service PersonsTO.java Wed Jan 16 20:18:02 2019 UTC

37588.2 Comparison summary

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

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

37588.4 Active regular expressions

No regular expressions were active.

37588.5 Comparison detail

  1  
  2   package go v.va.med.v ia.service ;
  3  
  4   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  5   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  6   import jav ax.xml.bin d.annotati on.XmlType ;
  7  
  8  
  9   /**
  10    * <p>Java  class for  personsTO  complex t ype.
  11    * 
  12    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  13    * 
  14    * <pre>
  15    * &lt;com plexType n ame="perso nsTO"&gt;
  16    *   &lt;c omplexCont ent&gt;
  17    *       &lt;extens ion base=" {http:// DNS          . URL         /}abstract TO"&gt;
  18    *       & lt;sequenc e&gt;
  19    *           &lt;elemen t name="us er" type=" {http:// DNS          . URL         /}userTO"  minOccurs= "0" form=" unqualifie d"/&gt;
  20    *           &lt;elemen t name="pa tient" typ e="{http:/ / DNS          . URL         /}patientT O" minOccu rs="0" for m="unquali fied"/&gt;
  21    *       & lt;/sequen ce&gt;
  22    *     &lt ;/extensio n&gt;
  23    *   &lt;/ complexCon tent&gt;
  24    * &lt;/co mplexType& gt;
  25    * </pre>
  26    * 
  27    * 
  28    */
  29   @XmlAccess orType(Xml AccessType .FIELD)
  30   @XmlType(n ame = "per sonsTO", p ropOrder =  {
  31       "user" ,
  32       "patie nt"
  33   })
  34   public cla ss Persons TO
  35       extend s Abstract TO
  36   {
  37  
  38       protec ted UserTO  user;
  39       protec ted Patien tTO patien t;
  40  
  41       /**
  42        * Get s the valu e of the u ser proper ty.
  43        * 
  44        * @re turn
  45        *      possible  object is
  46        *      {@link Us erTO }
  47        *      
  48        */
  49       public  UserTO ge tUser() {
  50           re turn user;
  51       }
  52  
  53       /**
  54        * Set s the valu e of the u ser proper ty.
  55        * 
  56        * @pa ram value
  57        *      allowed o bject is
  58        *      {@link Us erTO }
  59        *      
  60        */
  61       public  void setU ser(UserTO  value) {
  62           th is.user =  value;
  63       }
  64  
  65       /**
  66        * Get s the valu e of the p atient pro perty.
  67        * 
  68        * @re turn
  69        *      possible  object is
  70        *      {@link Pa tientTO }
  71        *      
  72        */
  73       public  PatientTO  getPatien t() {
  74           re turn patie nt;
  75       }
  76  
  77       /**
  78        * Set s the valu e of the p atient pro perty.
  79        * 
  80        * @pa ram value
  81        *      allowed o bject is
  82        *      {@link Pa tientTO }
  83        *      
  84        */
  85       public  void setP atient(Pat ientTO val ue) {
  86           th is.patient  = value;
  87       }
  88  
  89   }