783. EPMO Open Source Coordination Office Redaction File Detail Report

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

783.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_3_0_2\webservice ResponsePatientSelect.java Thu Apr 28 21:02:40 2016 UTC
2 ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_3_0_2\webservice ResponsePatientSelect.java Mon Oct 2 19:55:47 2017 UTC

783.2 Comparison summary

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

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

783.4 Active regular expressions

No regular expressions were active.

783.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_3_0_2.we bservice;
  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 atientSele ct 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 Select">
  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="a llowVAAcce ss" type=" {http://ww w.w3.org/2 001/XMLSch ema}boolea n"/>
  23    *          &lt;eleme nt name="e rrorMsg" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  24    *           &lt;elemen t name="ex ternalIDs"  type="{ht tp://webse rvice.jmea dows. URL         /}external ID" maxOcc urs="unbou nded" minO ccurs="0"/ >
  25    *           &lt;elemen t name="pa tient" typ e="{http:/ /webservic e.vds. URL         /}patient"  minOccurs ="0"/>
  26    *          &lt;eleme nt name="s uccess" ty pe="{http: //www.w3.o rg/2001/XM LSchema}bo olean"/>
  27    *          &lt;eleme nt name="V ARestricte d" type="{ http://www .w3.org/20 01/XMLSche ma}boolean "/>
  28    *       & lt;/sequen ce>
  29    *     &lt ;/restrict ion>
  30    *   &lt;/ complexCon tent>
  31    * &lt;/co mplexType>
  32    * </pre>
  33    * 
  34    * 
  35    */
  36   @XmlAccess orType(Xml AccessType .FIELD)
  37   @XmlType(n ame = "res ponsePatie ntSelect",  propOrder  = {
  38       "allow VAAccess",
  39       "error Msg",
  40       "exter nalIDs",
  41       "patie nt",
  42       "succe ss",
  43       "vaRes tricted"
  44   })
  45   public cla ss Respons ePatientSe lect {
  46  
  47       protec ted boolea n allowVAA ccess;
  48       protec ted String  errorMsg;
  49       @XmlEl ement(nill able = tru e)
  50       protec ted List<E xternalID>  externalI Ds;
  51       protec ted Patien t patient;
  52       protec ted boolea n success;
  53       @XmlEl ement(name  = "VARest ricted")
  54       protec ted boolea n vaRestri cted;
  55  
  56       /**
  57        * Get s the valu e of the a llowVAAcce ss propert y.
  58        * 
  59        */
  60       public  boolean i sAllowVAAc cess() {
  61           re turn allow VAAccess;
  62       }
  63  
  64       /**
  65        * Set s the valu e of the a llowVAAcce ss propert y.
  66        * 
  67        */
  68       public  void setA llowVAAcce ss(boolean  value) {
  69           th is.allowVA Access = v alue;
  70       }
  71  
  72       /**
  73        * Get s the valu e of the e rrorMsg pr operty.
  74        * 
  75        * @re turn
  76        *      possible  object is
  77        *      {@link St ring }
  78        *      
  79        */
  80       public  String ge tErrorMsg( ) {
  81           re turn error Msg;
  82       }
  83  
  84       /**
  85        * Set s the valu e of the e rrorMsg pr operty.
  86        * 
  87        * @pa ram value
  88        *      allowed o bject is
  89        *      {@link St ring }
  90        *      
  91        */
  92       public  void setE rrorMsg(St ring value ) {
  93           th is.errorMs g = value;
  94       }
  95  
  96       /**
  97        * Get s the valu e of the e xternalIDs  property.
  98        * 
  99        * <p>
  100        * Thi s accessor  method re turns a re ference to  the live  list,
  101        * not  a snapsho t. Therefo re any mod ification  you make t o the
  102        * ret urned list  will be p resent ins ide the JA XB object.
  103        * Thi s is why t here is no t a <CODE> set</CODE>  method fo r the exte rnalIDs pr operty.
  104        * 
  105        * <p>
  106        * For  example,  to add a n ew item, d o as follo ws:
  107        * <pr e>
  108        *     getExterna lIDs().add (newItem);
  109        * </p re>
  110        * 
  111        * 
  112        * <p>
  113        * Obj ects of th e followin g type(s)  are allowe d in the l ist
  114        * {@l ink Extern alID }
  115        * 
  116        * 
  117        */
  118       public  List<Exte rnalID> ge tExternalI Ds() {
  119           if  (external IDs == nul l) {
  120                external IDs = new  ArrayList< ExternalID >();
  121           }
  122           re turn this. externalID s;
  123       }
  124  
  125       /**
  126        * Get s the valu e of the p atient pro perty.
  127        * 
  128        * @re turn
  129        *      possible  object is
  130        *      {@link Pa tient }
  131        *      
  132        */
  133       public  Patient g etPatient( ) {
  134           re turn patie nt;
  135       }
  136  
  137       /**
  138        * Set s the valu e of the p atient pro perty.
  139        * 
  140        * @pa ram value
  141        *      allowed o bject is
  142        *      {@link Pa tient }
  143        *      
  144        */
  145       public  void setP atient(Pat ient value ) {
  146           th is.patient  = value;
  147       }
  148  
  149       /**
  150        * Get s the valu e of the s uccess pro perty.
  151        * 
  152        */
  153       public  boolean i sSuccess()  {
  154           re turn succe ss;
  155       }
  156  
  157       /**
  158        * Set s the valu e of the s uccess pro perty.
  159        * 
  160        */
  161       public  void setS uccess(boo lean value ) {
  162           th is.success  = value;
  163       }
  164  
  165       /**
  166        * Get s the valu e of the v aRestricte d property .
  167        * 
  168        */
  169       public  boolean i sVARestric ted() {
  170           re turn vaRes tricted;
  171       }
  172  
  173       /**
  174        * Set s the valu e of the v aRestricte d property .
  175        * 
  176        */
  177       public  void setV ARestricte d(boolean  value) {
  178           th is.vaRestr icted = va lue;
  179       }
  180  
  181   }