202. EPMO Open Source Coordination Office Redaction File Detail Report

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

202.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 DataBean.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 DataBean.java Mon Oct 2 19:50:48 2017 UTC

202.2 Comparison summary

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

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

202.4 Active regular expressions

No regular expressions were active.

202.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_0.webser vice;
  3  
  4   import jav a.util.Arr ayList;
  5   import jav a.util.Lis t;
  6   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  7   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  8   import jav ax.xml.bin d.annotati on.XmlElem ent;
  9   import jav ax.xml.bin d.annotati on.XmlSeeA lso;
  10   import jav ax.xml.bin d.annotati on.XmlType ;
  11  
  12  
  13   /**
  14    * <p>Java  class for  dataBean  complex ty pe.
  15    * 
  16    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  17    * 
  18    * <pre>
  19    * &lt;com plexType n ame="dataB ean">
  20    *   &lt;c omplexCont ent>
  21    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
  22    *       & lt;sequenc e>
  23    *          &lt;eleme nt name="c drEventId"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
  24    *           &lt;elemen t name="co des" type= "{http://w ebservice. vds. URL         /}code" ma xOccurs="u nbounded"  minOccurs= "0"/>
  25    *          &lt;eleme nt name="p atientId"  type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/>
  26    *          &lt;eleme nt name="p atientName " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
  27    *           &lt;elemen t name="si te" type=" {http://we bservice.v ds. URL         /}site" mi nOccurs="0 "/>
  28    *          &lt;eleme nt name="s ourceProto col" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/>
  29    *       & lt;/sequen ce>
  30    *     &lt ;/restrict ion>
  31    *   &lt;/ complexCon tent>
  32    * &lt;/co mplexType>
  33    * </pre>
  34    * 
  35    * 
  36    */
  37   @XmlAccess orType(Xml AccessType .FIELD)
  38   @XmlType(n ame = "dat aBean", na mespace =  "http://we bservice.v ds. URL         /", propOr der = {
  39       "cdrEv entId",
  40       "codes ",
  41       "patie ntId",
  42       "patie ntName",
  43       "site" ,
  44       "sourc eProtocol"
  45   })
  46   @XmlSeeAls o({
  47       Clinic alReminder .class,
  48       LabRes ult.class,
  49       Deploy mentForm.c lass,
  50       Referr alBean.cla ss,
  51       Proble m.class,
  52       Patien tDemograph icsDetail. class,
  53       VlerDo cument.cla ss,
  54       Insura nceBean.cl ass,
  55       Order. class,
  56       Diagno sis.class,
  57       Allerg y.class,
  58       Prescr iptionFill .class,
  59       Immuni zation.cla ss,
  60       Vitals .class,
  61       LabOrd er.class,
  62       Radiol ogyExam.cl ass,
  63       Allerg yDetail.cl ass,
  64       Alert. class,
  65       Encoun terDocumen t.class,
  66       Questi onnaireBea n.class,
  67       Consul t.class,
  68       Patien tAdmission .class,
  69       Medica tion.class ,
  70       Proced ure.class,
  71       Patien tAppointme nts.class,
  72       Proble mNote.clas s,
  73       Progre ssNote.cla ss,
  74       FreeTe xtReport.c lass,
  75       Patien tHistory.c lass,
  76       Form.c lass
  77   })
  78   public cla ss DataBea n {
  79  
  80       protec ted String  cdrEventI d;
  81       @XmlEl ement(nill able = tru e)
  82       protec ted List<C ode> codes ;
  83       protec ted String  patientId ;
  84       protec ted String  patientNa me;
  85       protec ted Site s ite;
  86       protec ted String  sourcePro tocol;
  87  
  88       /**
  89        * Get s the valu e of the c drEventId  property.
  90        * 
  91        * @re turn
  92        *      possible  object is
  93        *      {@link St ring }
  94        *      
  95        */
  96       public  String ge tCdrEventI d() {
  97           re turn cdrEv entId;
  98       }
  99  
  100       /**
  101        * Set s the valu e of the c drEventId  property.
  102        * 
  103        * @pa ram value
  104        *      allowed o bject is
  105        *      {@link St ring }
  106        *      
  107        */
  108       public  void setC drEventId( String val ue) {
  109           th is.cdrEven tId = valu e;
  110       }
  111  
  112       /**
  113        * Get s the valu e of the c odes prope rty.
  114        * 
  115        * <p>
  116        * Thi s accessor  method re turns a re ference to  the live  list,
  117        * not  a snapsho t. Therefo re any mod ification  you make t o the
  118        * ret urned list  will be p resent ins ide the JA XB object.
  119        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the code s property .
  120        * 
  121        * <p>
  122        * For  example,  to add a n ew item, d o as follo ws:
  123        * <pr e>
  124        *     getCodes() .add(newIt em);
  125        * </p re>
  126        * 
  127        * 
  128        * <p>
  129        * Obj ects of th e followin g type(s)  are allowe d in the l ist
  130        * {@l ink Code }
  131        * 
  132        * 
  133        */
  134       public  List<Code > getCodes () {
  135           if  (codes ==  null) {
  136                codes =  new ArrayL ist<Code>( );
  137           }
  138           re turn this. codes;
  139       }
  140  
  141       /**
  142        * Get s the valu e of the p atientId p roperty.
  143        * 
  144        * @re turn
  145        *      possible  object is
  146        *      {@link St ring }
  147        *      
  148        */
  149       public  String ge tPatientId () {
  150           re turn patie ntId;
  151       }
  152  
  153       /**
  154        * Set s the valu e of the p atientId p roperty.
  155        * 
  156        * @pa ram value
  157        *      allowed o bject is
  158        *      {@link St ring }
  159        *      
  160        */
  161       public  void setP atientId(S tring valu e) {
  162           th is.patient Id = value ;
  163       }
  164  
  165       /**
  166        * Get s the valu e of the p atientName  property.
  167        * 
  168        * @re turn
  169        *      possible  object is
  170        *      {@link St ring }
  171        *      
  172        */
  173       public  String ge tPatientNa me() {
  174           re turn patie ntName;
  175       }
  176  
  177       /**
  178        * Set s the valu e of the p atientName  property.
  179        * 
  180        * @pa ram value
  181        *      allowed o bject is
  182        *      {@link St ring }
  183        *      
  184        */
  185       public  void setP atientName (String va lue) {
  186           th is.patient Name = val ue;
  187       }
  188  
  189       /**
  190        * Get s the valu e of the s ite proper ty.
  191        * 
  192        * @re turn
  193        *      possible  object is
  194        *      {@link Si te }
  195        *      
  196        */
  197       public  Site getS ite() {
  198           re turn site;
  199       }
  200  
  201       /**
  202        * Set s the valu e of the s ite proper ty.
  203        * 
  204        * @pa ram value
  205        *      allowed o bject is
  206        *      {@link Si te }
  207        *      
  208        */
  209       public  void setS ite(Site v alue) {
  210           th is.site =  value;
  211       }
  212  
  213       /**
  214        * Get s the valu e of the s ourceProto col proper ty.
  215        * 
  216        * @re turn
  217        *      possible  object is
  218        *      {@link St ring }
  219        *      
  220        */
  221       public  String ge tSourcePro tocol() {
  222           re turn sourc eProtocol;
  223       }
  224  
  225       /**
  226        * Set s the valu e of the s ourceProto col proper ty.
  227        * 
  228        * @pa ram value
  229        *      allowed o bject is
  230        *      {@link St ring }
  231        *      
  232        */
  233       public  void setS ourceProto col(String  value) {
  234           th is.sourceP rotocol =  value;
  235       }
  236  
  237   }