364. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/3/2017 11:15:32 AM 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.

364.1 Files compared

# Location File Last Modified
1 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_0\webservice RadiologyExam.java Tue Dec 15 14:05:18 2015 UTC
2 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_0\webservice RadiologyExam.java Mon Oct 2 19:52:09 2017 UTC

364.2 Comparison summary

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

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

364.4 Active regular expressions

No regular expressions were active.

364.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_0.webser vice;
  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.XmlSche maType;
  7   import jav ax.xml.bin d.annotati on.XmlSeeA lso;
  8   import jav ax.xml.bin d.annotati on.XmlType ;
  9   import jav ax.xml.dat atype.XMLG regorianCa lendar;
  10  
  11  
  12   /**
  13    * <p>Java  class for  radiology Exam compl ex 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="radio logyExam">
  19    *   &lt;c omplexCont ent>
  20    *       &lt;extens ion base=" {http://we bservice.v ds. URL         /}dataBean ">
  21    *       & lt;sequenc e>
  22    *          &lt;eleme nt name="a ccessionNu mber" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/>
  23    *          &lt;eleme nt name="e xamDate" t ype="{http ://www.w3. org/2001/X MLSchema}d ateTime" m inOccurs=" 0"/>
  24    *          &lt;eleme nt name="e xamId" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  25    *          &lt;eleme nt name="r easonForOr der" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/>
  26    *          &lt;eleme nt name="s tatus" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  27    *          &lt;eleme nt name="s tudy" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/>
  28    *       & lt;/sequen ce>
  29    *     &lt ;/extensio n>
  30    *   &lt;/ complexCon tent>
  31    * &lt;/co mplexType>
  32    * </pre>
  33    * 
  34    * 
  35    */
  36   @XmlAccess orType(Xml AccessType .FIELD)
  37   @XmlType(n ame = "rad iologyExam ", namespa ce = "http ://webserv ice.vds. URL         /", propOr der = {
  38       "acces sionNumber ",
  39       "examD ate",
  40       "examI d",
  41       "reaso nForOrder" ,
  42       "statu s",
  43       "study "
  44   })
  45   @XmlSeeAls o({
  46       Radiol ogyReport. class
  47   })
  48   public cla ss Radiolo gyExam
  49       extend s DataBean
  50   {
  51  
  52       protec ted String  accession Number;
  53       @XmlSc hemaType(n ame = "dat eTime")
  54       protec ted XMLGre gorianCale ndar examD ate;
  55       protec ted String  examId;
  56       protec ted String  reasonFor Order;
  57       protec ted String  status;
  58       protec ted String  study;
  59  
  60       /**
  61        * Get s the valu e of the a ccessionNu mber prope rty.
  62        * 
  63        * @re turn
  64        *      possible  object is
  65        *      {@link St ring }
  66        *      
  67        */
  68       public  String ge tAccession Number() {
  69           re turn acces sionNumber ;
  70       }
  71  
  72       /**
  73        * Set s the valu e of the a ccessionNu mber prope rty.
  74        * 
  75        * @pa ram value
  76        *      allowed o bject is
  77        *      {@link St ring }
  78        *      
  79        */
  80       public  void setA ccessionNu mber(Strin g value) {
  81           th is.accessi onNumber =  value;
  82       }
  83  
  84       /**
  85        * Get s the valu e of the e xamDate pr operty.
  86        * 
  87        * @re turn
  88        *      possible  object is
  89        *      {@link XM LGregorian Calendar }
  90        *      
  91        */
  92       public  XMLGregor ianCalenda r getExamD ate() {
  93           re turn examD ate;
  94       }
  95  
  96       /**
  97        * Set s the valu e of the e xamDate pr operty.
  98        * 
  99        * @pa ram value
  100        *      allowed o bject is
  101        *      {@link XM LGregorian Calendar }
  102        *      
  103        */
  104       public  void setE xamDate(XM LGregorian Calendar v alue) {
  105           th is.examDat e = value;
  106       }
  107  
  108       /**
  109        * Get s the valu e of the e xamId prop erty.
  110        * 
  111        * @re turn
  112        *      possible  object is
  113        *      {@link St ring }
  114        *      
  115        */
  116       public  String ge tExamId()  {
  117           re turn examI d;
  118       }
  119  
  120       /**
  121        * Set s the valu e of the e xamId prop erty.
  122        * 
  123        * @pa ram value
  124        *      allowed o bject is
  125        *      {@link St ring }
  126        *      
  127        */
  128       public  void setE xamId(Stri ng value)  {
  129           th is.examId  = value;
  130       }
  131  
  132       /**
  133        * Get s the valu e of the r easonForOr der proper ty.
  134        * 
  135        * @re turn
  136        *      possible  object is
  137        *      {@link St ring }
  138        *      
  139        */
  140       public  String ge tReasonFor Order() {
  141           re turn reaso nForOrder;
  142       }
  143  
  144       /**
  145        * Set s the valu e of the r easonForOr der proper ty.
  146        * 
  147        * @pa ram value
  148        *      allowed o bject is
  149        *      {@link St ring }
  150        *      
  151        */
  152       public  void setR easonForOr der(String  value) {
  153           th is.reasonF orOrder =  value;
  154       }
  155  
  156       /**
  157        * Get s the valu e of the s tatus prop erty.
  158        * 
  159        * @re turn
  160        *      possible  object is
  161        *      {@link St ring }
  162        *      
  163        */
  164       public  String ge tStatus()  {
  165           re turn statu s;
  166       }
  167  
  168       /**
  169        * Set s the valu e of the s tatus prop erty.
  170        * 
  171        * @pa ram value
  172        *      allowed o bject is
  173        *      {@link St ring }
  174        *      
  175        */
  176       public  void setS tatus(Stri ng value)  {
  177           th is.status  = value;
  178       }
  179  
  180       /**
  181        * Get s the valu e of the s tudy prope rty.
  182        * 
  183        * @re turn
  184        *      possible  object is
  185        *      {@link St ring }
  186        *      
  187        */
  188       public  String ge tStudy() {
  189           re turn study ;
  190       }
  191  
  192       /**
  193        * Set s the valu e of the s tudy prope rty.
  194        * 
  195        * @pa ram value
  196        *      allowed o bject is
  197        *      {@link St ring }
  198        *      
  199        */
  200       public  void setS tudy(Strin g value) {
  201           th is.study =  value;
  202       }
  203  
  204   }