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

570.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 RadiologyReport.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 RadiologyReport.java Mon Oct 2 19:53:55 2017 UTC

570.2 Comparison summary

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

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

570.4 Active regular expressions

No regular expressions were active.

570.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.XmlType ;
  8   import jav ax.xml.dat atype.XMLG regorianCa lendar;
  9  
  10  
  11   /**
  12    * <p>Java  class for  radiology Report com plex 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="radio logyReport ">
  18    *   &lt;c omplexCont ent>
  19    *       &lt;extens ion base=" {http://we bservice.v ds. URL         /}radiolog yExam">
  20    *       & lt;sequenc e>
  21    *          &lt;eleme nt name="a bnormal" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  22    *          &lt;eleme nt name="a pprovedBy"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  23    *          &lt;eleme nt name="c aseNumber"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  24    *          &lt;eleme nt name="i mpressionT ext" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/>
  25    *          &lt;eleme nt name="i nterpretin gHCP" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/>
  26    *          &lt;eleme nt name="r eportIEN"  type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/>
  27    *          &lt;eleme nt name="r eportStatu s" type="{ http://www .w3.org/20 01/XMLSche ma}string"  minOccurs ="0"/>
  28    *          &lt;eleme nt name="r eportText"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  29    *          &lt;eleme nt name="r esultCode"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  30    *          &lt;eleme nt name="s everity" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  31    *          &lt;eleme nt name="t ranscribeD ate" type= "{http://w ww.w3.org/ 2001/XMLSc hema}dateT ime" minOc curs="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 iologyRepo rt", names pace = "ht tp://webse rvice.vds. URL         /", propOr der = {
  42       "abnor mal",
  43       "appro vedBy",
  44       "caseN umber",
  45       "impre ssionText" ,
  46       "inter pretingHCP ",
  47       "repor tIEN",
  48       "repor tStatus",
  49       "repor tText",
  50       "resul tCode",
  51       "sever ity",
  52       "trans cribeDate"
  53   })
  54   public cla ss Radiolo gyReport
  55       extend s Radiolog yExam
  56   {
  57  
  58       protec ted String  abnormal;
  59       protec ted String  approvedB y;
  60       protec ted String  caseNumbe r;
  61       protec ted String  impressio nText;
  62       protec ted String  interpret ingHCP;
  63       protec ted String  reportIEN ;
  64       protec ted String  reportSta tus;
  65       protec ted String  reportTex t;
  66       protec ted String  resultCod e;
  67       protec ted String  severity;
  68       @XmlSc hemaType(n ame = "dat eTime")
  69       protec ted XMLGre gorianCale ndar trans cribeDate;
  70  
  71       /**
  72        * Get s the valu e of the a bnormal pr operty.
  73        * 
  74        * @re turn
  75        *      possible  object is
  76        *      {@link St ring }
  77        *      
  78        */
  79       public  String ge tAbnormal( ) {
  80           re turn abnor mal;
  81       }
  82  
  83       /**
  84        * Set s the valu e of the a bnormal pr operty.
  85        * 
  86        * @pa ram value
  87        *      allowed o bject is
  88        *      {@link St ring }
  89        *      
  90        */
  91       public  void setA bnormal(St ring value ) {
  92           th is.abnorma l = value;
  93       }
  94  
  95       /**
  96        * Get s the valu e of the a pprovedBy  property.
  97        * 
  98        * @re turn
  99        *      possible  object is
  100        *      {@link St ring }
  101        *      
  102        */
  103       public  String ge tApprovedB y() {
  104           re turn appro vedBy;
  105       }
  106  
  107       /**
  108        * Set s the valu e of the a pprovedBy  property.
  109        * 
  110        * @pa ram value
  111        *      allowed o bject is
  112        *      {@link St ring }
  113        *      
  114        */
  115       public  void setA pprovedBy( String val ue) {
  116           th is.approve dBy = valu e;
  117       }
  118  
  119       /**
  120        * Get s the valu e of the c aseNumber  property.
  121        * 
  122        * @re turn
  123        *      possible  object is
  124        *      {@link St ring }
  125        *      
  126        */
  127       public  String ge tCaseNumbe r() {
  128           re turn caseN umber;
  129       }
  130  
  131       /**
  132        * Set s the valu e of the c aseNumber  property.
  133        * 
  134        * @pa ram value
  135        *      allowed o bject is
  136        *      {@link St ring }
  137        *      
  138        */
  139       public  void setC aseNumber( String val ue) {
  140           th is.caseNum ber = valu e;
  141       }
  142  
  143       /**
  144        * Get s the valu e of the i mpressionT ext proper ty.
  145        * 
  146        * @re turn
  147        *      possible  object is
  148        *      {@link St ring }
  149        *      
  150        */
  151       public  String ge tImpressio nText() {
  152           re turn impre ssionText;
  153       }
  154  
  155       /**
  156        * Set s the valu e of the i mpressionT ext proper ty.
  157        * 
  158        * @pa ram value
  159        *      allowed o bject is
  160        *      {@link St ring }
  161        *      
  162        */
  163       public  void setI mpressionT ext(String  value) {
  164           th is.impress ionText =  value;
  165       }
  166  
  167       /**
  168        * Get s the valu e of the i nterpretin gHCP prope rty.
  169        * 
  170        * @re turn
  171        *      possible  object is
  172        *      {@link St ring }
  173        *      
  174        */
  175       public  String ge tInterpret ingHCP() {
  176           re turn inter pretingHCP ;
  177       }
  178  
  179       /**
  180        * Set s the valu e of the i nterpretin gHCP prope rty.
  181        * 
  182        * @pa ram value
  183        *      allowed o bject is
  184        *      {@link St ring }
  185        *      
  186        */
  187       public  void setI nterpretin gHCP(Strin g value) {
  188           th is.interpr etingHCP =  value;
  189       }
  190  
  191       /**
  192        * Get s the valu e of the r eportIEN p roperty.
  193        * 
  194        * @re turn
  195        *      possible  object is
  196        *      {@link St ring }
  197        *      
  198        */
  199       public  String ge tReportIEN () {
  200           re turn repor tIEN;
  201       }
  202  
  203       /**
  204        * Set s the valu e of the r eportIEN p roperty.
  205        * 
  206        * @pa ram value
  207        *      allowed o bject is
  208        *      {@link St ring }
  209        *      
  210        */
  211       public  void setR eportIEN(S tring valu e) {
  212           th is.reportI EN = value ;
  213       }
  214  
  215       /**
  216        * Get s the valu e of the r eportStatu s property .
  217        * 
  218        * @re turn
  219        *      possible  object is
  220        *      {@link St ring }
  221        *      
  222        */
  223       public  String ge tReportSta tus() {
  224           re turn repor tStatus;
  225       }
  226  
  227       /**
  228        * Set s the valu e of the r eportStatu s property .
  229        * 
  230        * @pa ram value
  231        *      allowed o bject is
  232        *      {@link St ring }
  233        *      
  234        */
  235       public  void setR eportStatu s(String v alue) {
  236           th is.reportS tatus = va lue;
  237       }
  238  
  239       /**
  240        * Get s the valu e of the r eportText  property.
  241        * 
  242        * @re turn
  243        *      possible  object is
  244        *      {@link St ring }
  245        *      
  246        */
  247       public  String ge tReportTex t() {
  248           re turn repor tText;
  249       }
  250  
  251       /**
  252        * Set s the valu e of the r eportText  property.
  253        * 
  254        * @pa ram value
  255        *      allowed o bject is
  256        *      {@link St ring }
  257        *      
  258        */
  259       public  void setR eportText( String val ue) {
  260           th is.reportT ext = valu e;
  261       }
  262  
  263       /**
  264        * Get s the valu e of the r esultCode  property.
  265        * 
  266        * @re turn
  267        *      possible  object is
  268        *      {@link St ring }
  269        *      
  270        */
  271       public  String ge tResultCod e() {
  272           re turn resul tCode;
  273       }
  274  
  275       /**
  276        * Set s the valu e of the r esultCode  property.
  277        * 
  278        * @pa ram value
  279        *      allowed o bject is
  280        *      {@link St ring }
  281        *      
  282        */
  283       public  void setR esultCode( String val ue) {
  284           th is.resultC ode = valu e;
  285       }
  286  
  287       /**
  288        * Get s the valu e of the s everity pr operty.
  289        * 
  290        * @re turn
  291        *      possible  object is
  292        *      {@link St ring }
  293        *      
  294        */
  295       public  String ge tSeverity( ) {
  296           re turn sever ity;
  297       }
  298  
  299       /**
  300        * Set s the valu e of the s everity pr operty.
  301        * 
  302        * @pa ram value
  303        *      allowed o bject is
  304        *      {@link St ring }
  305        *      
  306        */
  307       public  void setS everity(St ring value ) {
  308           th is.severit y = value;
  309       }
  310  
  311       /**
  312        * Get s the valu e of the t ranscribeD ate proper ty.
  313        * 
  314        * @re turn
  315        *      possible  object is
  316        *      {@link XM LGregorian Calendar }
  317        *      
  318        */
  319       public  XMLGregor ianCalenda r getTrans cribeDate( ) {
  320           re turn trans cribeDate;
  321       }
  322  
  323       /**
  324        * Set s the valu e of the t ranscribeD ate proper ty.
  325        * 
  326        * @pa ram value
  327        *      allowed o bject is
  328        *      {@link XM LGregorian Calendar }
  329        *      
  330        */
  331       public  void setT ranscribeD ate(XMLGre gorianCale ndar value ) {
  332           th is.transcr ibeDate =  value;
  333       }
  334  
  335   }