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

368.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 ResponsePatientQuery.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 ResponsePatientQuery.java Mon Oct 2 19:52:11 2017 UTC

368.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 228
Changed 1 2
Inserted 0 0
Removed 0 0

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

368.4 Active regular expressions

No regular expressions were active.

368.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.XmlType ;
  10  
  11  
  12   /**
  13    * <p>Java  class for  responseP atientQuer y complex  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="respo nsePatient Query">
  19    *   &lt;c omplexCont ent>
  20    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
  21    *       & lt;sequenc e>
  22    *          &lt;eleme nt name="e rrorMsg" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  23    *           &lt;elemen t name="pa tients" ty pe="{http: //webservi ce.vds. URL         /}patient"  maxOccurs ="unbounde d" minOccu rs="0"/>
  24    *          &lt;eleme nt name="s uccess" ty pe="{http: //www.w3.o rg/2001/XM LSchema}bo olean"/>
  25    *       & lt;/sequen ce>
  26    *     &lt ;/restrict ion>
  27    *   &lt;/ complexCon tent>
  28    * &lt;/co mplexType>
  29    * </pre>
  30    * 
  31    * 
  32    */
  33   @XmlAccess orType(Xml AccessType .FIELD)
  34   @XmlType(n ame = "res ponsePatie ntQuery",  propOrder  = {
  35       "error Msg",
  36       "patie nts",
  37       "succe ss"
  38   })
  39   public cla ss Respons ePatientQu ery {
  40  
  41       protec ted String  errorMsg;
  42       @XmlEl ement(nill able = tru e)
  43       protec ted List<P atient> pa tients;
  44       protec ted boolea n success;
  45  
  46       /**
  47        * Get s the valu e of the e rrorMsg pr operty.
  48        * 
  49        * @re turn
  50        *      possible  object is
  51        *      {@link St ring }
  52        *      
  53        */
  54       public  String ge tErrorMsg( ) {
  55           re turn error Msg;
  56       }
  57  
  58       /**
  59        * Set s the valu e of the e rrorMsg pr operty.
  60        * 
  61        * @pa ram value
  62        *      allowed o bject is
  63        *      {@link St ring }
  64        *      
  65        */
  66       public  void setE rrorMsg(St ring value ) {
  67           th is.errorMs g = value;
  68       }
  69  
  70       /**
  71        * Get s the valu e of the p atients pr operty.
  72        * 
  73        * <p>
  74        * Thi s accessor  method re turns a re ference to  the live  list,
  75        * not  a snapsho t. Therefo re any mod ification  you make t o the
  76        * ret urned list  will be p resent ins ide the JA XB object.
  77        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the pati ents prope rty.
  78        * 
  79        * <p>
  80        * For  example,  to add a n ew item, d o as follo ws:
  81        * <pr e>
  82        *     getPatient s().add(ne wItem);
  83        * </p re>
  84        * 
  85        * 
  86        * <p>
  87        * Obj ects of th e followin g type(s)  are allowe d in the l ist
  88        * {@l ink Patien t }
  89        * 
  90        * 
  91        */
  92       public  List<Pati ent> getPa tients() {
  93           if  (patients  == null)  {
  94                patients  = new Arr ayList<Pat ient>();
  95           }
  96           re turn this. patients;
  97       }
  98  
  99       /**
  100        * Get s the valu e of the s uccess pro perty.
  101        * 
  102        */
  103       public  boolean i sSuccess()  {
  104           re turn succe ss;
  105       }
  106  
  107       /**
  108        * Set s the valu e of the s uccess pro perty.
  109        * 
  110        */
  111       public  void setS uccess(boo lean value ) {
  112           th is.success  = value;
  113       }
  114  
  115   }