569. EPMO Open Source Coordination Office Redaction File Detail Report

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

569.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_1\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_1\webservice RadiologyExam.java Mon Oct 2 19:53:55 2017 UTC

569.2 Comparison summary

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

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

569.4 Active regular expressions

No regular expressions were active.

569.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_1.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="a mendedDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}dateTime " minOccur s="0"/>
  24    *          &lt;eleme nt name="a mendedText " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
  25    *          &lt;eleme nt name="e xamDate" t ype="{http ://www.w3. org/2001/X MLSchema}d ateTime" m inOccurs=" 0"/>
  26    *          &lt;eleme nt name="e xamId" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  27    *          &lt;eleme nt name="o rderNumber " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
  28    *          &lt;eleme nt name="p riority" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  29    *          &lt;eleme nt name="r easonForOr der" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/>
  30    *          &lt;eleme nt name="s tatus" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
  31    *          &lt;eleme nt name="s tudy" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/>
  32    *       & lt;/sequen ce>
  33    *     &lt ;/extensio n>
  34    *   &lt;/ complexCon tent>
  35    * &lt;/co mplexType>
  36    * </pre>
  37    * 
  38    * 
  39    */
  40   @XmlAccess orType(Xml AccessType .FIELD)
  41   @XmlType(n ame = "rad iologyExam ", namespa ce = "http ://webserv ice.vds. URL         /", propOr der = {
  42       "acces sionNumber ",
  43       "amend edDate",
  44       "amend edText",
  45       "examD ate",
  46       "examI d",
  47       "order Number",
  48       "prior ity",
  49       "reaso nForOrder" ,
  50       "statu s",
  51       "study "
  52   })
  53   @XmlSeeAls o({
  54       Radiol ogyReport. class
  55   })
  56   public cla ss Radiolo gyExam
  57       extend s DataBean
  58   {
  59  
  60       protec ted String  accession Number;
  61       @XmlSc hemaType(n ame = "dat eTime")
  62       protec ted XMLGre gorianCale ndar amend edDate;
  63       protec ted String  amendedTe xt;
  64       @XmlSc hemaType(n ame = "dat eTime")
  65       protec ted XMLGre gorianCale ndar examD ate;
  66       protec ted String  examId;
  67       protec ted String  orderNumb er;
  68       protec ted String  priority;
  69       protec ted String  reasonFor Order;
  70       protec ted String  status;
  71       protec ted String  study;
  72  
  73       /**
  74        * Get s the valu e of the a ccessionNu mber prope rty.
  75        * 
  76        * @re turn
  77        *      possible  object is
  78        *      {@link St ring }
  79        *      
  80        */
  81       public  String ge tAccession Number() {
  82           re turn acces sionNumber ;
  83       }
  84  
  85       /**
  86        * Set s the valu e of the a ccessionNu mber prope rty.
  87        * 
  88        * @pa ram value
  89        *      allowed o bject is
  90        *      {@link St ring }
  91        *      
  92        */
  93       public  void setA ccessionNu mber(Strin g value) {
  94           th is.accessi onNumber =  value;
  95       }
  96  
  97       /**
  98        * Get s the valu e of the a mendedDate  property.
  99        * 
  100        * @re turn
  101        *      possible  object is
  102        *      {@link XM LGregorian Calendar }
  103        *      
  104        */
  105       public  XMLGregor ianCalenda r getAmend edDate() {
  106           re turn amend edDate;
  107       }
  108  
  109       /**
  110        * Set s the valu e of the a mendedDate  property.
  111        * 
  112        * @pa ram value
  113        *      allowed o bject is
  114        *      {@link XM LGregorian Calendar }
  115        *      
  116        */
  117       public  void setA mendedDate (XMLGregor ianCalenda r value) {
  118           th is.amended Date = val ue;
  119       }
  120  
  121       /**
  122        * Get s the valu e of the a mendedText  property.
  123        * 
  124        * @re turn
  125        *      possible  object is
  126        *      {@link St ring }
  127        *      
  128        */
  129       public  String ge tAmendedTe xt() {
  130           re turn amend edText;
  131       }
  132  
  133       /**
  134        * Set s the valu e of the a mendedText  property.
  135        * 
  136        * @pa ram value
  137        *      allowed o bject is
  138        *      {@link St ring }
  139        *      
  140        */
  141       public  void setA mendedText (String va lue) {
  142           th is.amended Text = val ue;
  143       }
  144  
  145       /**
  146        * Get s the valu e of the e xamDate pr operty.
  147        * 
  148        * @re turn
  149        *      possible  object is
  150        *      {@link XM LGregorian Calendar }
  151        *      
  152        */
  153       public  XMLGregor ianCalenda r getExamD ate() {
  154           re turn examD ate;
  155       }
  156  
  157       /**
  158        * Set s the valu e of the e xamDate pr operty.
  159        * 
  160        * @pa ram value
  161        *      allowed o bject is
  162        *      {@link XM LGregorian Calendar }
  163        *      
  164        */
  165       public  void setE xamDate(XM LGregorian Calendar v alue) {
  166           th is.examDat e = value;
  167       }
  168  
  169       /**
  170        * Get s the valu e of the e xamId prop erty.
  171        * 
  172        * @re turn
  173        *      possible  object is
  174        *      {@link St ring }
  175        *      
  176        */
  177       public  String ge tExamId()  {
  178           re turn examI d;
  179       }
  180  
  181       /**
  182        * Set s the valu e of the e xamId prop erty.
  183        * 
  184        * @pa ram value
  185        *      allowed o bject is
  186        *      {@link St ring }
  187        *      
  188        */
  189       public  void setE xamId(Stri ng value)  {
  190           th is.examId  = value;
  191       }
  192  
  193       /**
  194        * Get s the valu e of the o rderNumber  property.
  195        * 
  196        * @re turn
  197        *      possible  object is
  198        *      {@link St ring }
  199        *      
  200        */
  201       public  String ge tOrderNumb er() {
  202           re turn order Number;
  203       }
  204  
  205       /**
  206        * Set s the valu e of the o rderNumber  property.
  207        * 
  208        * @pa ram value
  209        *      allowed o bject is
  210        *      {@link St ring }
  211        *      
  212        */
  213       public  void setO rderNumber (String va lue) {
  214           th is.orderNu mber = val ue;
  215       }
  216  
  217       /**
  218        * Get s the valu e of the p riority pr operty.
  219        * 
  220        * @re turn
  221        *      possible  object is
  222        *      {@link St ring }
  223        *      
  224        */
  225       public  String ge tPriority( ) {
  226           re turn prior ity;
  227       }
  228  
  229       /**
  230        * Set s the valu e of the p riority pr operty.
  231        * 
  232        * @pa ram value
  233        *      allowed o bject is
  234        *      {@link St ring }
  235        *      
  236        */
  237       public  void setP riority(St ring value ) {
  238           th is.priorit y = value;
  239       }
  240  
  241       /**
  242        * Get s the valu e of the r easonForOr der proper ty.
  243        * 
  244        * @re turn
  245        *      possible  object is
  246        *      {@link St ring }
  247        *      
  248        */
  249       public  String ge tReasonFor Order() {
  250           re turn reaso nForOrder;
  251       }
  252  
  253       /**
  254        * Set s the valu e of the r easonForOr der proper ty.
  255        * 
  256        * @pa ram value
  257        *      allowed o bject is
  258        *      {@link St ring }
  259        *      
  260        */
  261       public  void setR easonForOr der(String  value) {
  262           th is.reasonF orOrder =  value;
  263       }
  264  
  265       /**
  266        * Get s the valu e of the s tatus prop erty.
  267        * 
  268        * @re turn
  269        *      possible  object is
  270        *      {@link St ring }
  271        *      
  272        */
  273       public  String ge tStatus()  {
  274           re turn statu s;
  275       }
  276  
  277       /**
  278        * Set s the valu e of the s tatus prop erty.
  279        * 
  280        * @pa ram value
  281        *      allowed o bject is
  282        *      {@link St ring }
  283        *      
  284        */
  285       public  void setS tatus(Stri ng value)  {
  286           th is.status  = value;
  287       }
  288  
  289       /**
  290        * Get s the valu e of the s tudy prope rty.
  291        * 
  292        * @re turn
  293        *      possible  object is
  294        *      {@link St ring }
  295        *      
  296        */
  297       public  String ge tStudy() {
  298           re turn study ;
  299       }
  300  
  301       /**
  302        * Set s the valu e of the s tudy prope rty.
  303        * 
  304        * @pa ram value
  305        *      allowed o bject is
  306        *      {@link St ring }
  307        *      
  308        */
  309       public  void setS tudy(Strin g value) {
  310           th is.study =  value;
  311       }
  312  
  313   }