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

351.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 PrescriptionFill.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 PrescriptionFill.java Mon Oct 2 19:52:03 2017 UTC

351.2 Comparison summary

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

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

351.4 Active regular expressions

No regular expressions were active.

351.5 Comparison detail

  1  
  2   package go v.va.med.j meadows_2_ 3_0.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  prescript ionFill co mplex 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="presc riptionFil l">
  18    *   &lt;c omplexCont ent>
  19    *       &lt;extens ion base=" {http://we bservice.v ds. URL         /}dataBean ">
  20    *       & lt;sequenc e>
  21    *          &lt;eleme nt name="d ispenseDat e" type="{ http://www .w3.org/20 01/XMLSche ma}dateTim e" minOccu rs="0"/>
  22    *          &lt;eleme nt name="d ispensingP harmacy" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  23    *          &lt;eleme nt name="d ispensingQ uantity" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" />
  24    *       & lt;/sequen ce>
  25    *     &lt ;/extensio n>
  26    *   &lt;/ complexCon tent>
  27    * &lt;/co mplexType>
  28    * </pre>
  29    * 
  30    * 
  31    */
  32   @XmlAccess orType(Xml AccessType .FIELD)
  33   @XmlType(n ame = "pre scriptionF ill", name space = "h ttp://webs ervice.vds . URL         /", propOr der = {
  34       "dispe nseDate",
  35       "dispe nsingPharm acy",
  36       "dispe nsingQuant ity"
  37   })
  38   public cla ss Prescri ptionFill
  39       extend s DataBean
  40   {
  41  
  42       @XmlSc hemaType(n ame = "dat eTime")
  43       protec ted XMLGre gorianCale ndar dispe nseDate;
  44       protec ted String  dispensin gPharmacy;
  45       protec ted String  dispensin gQuantity;
  46  
  47       /**
  48        * Get s the valu e of the d ispenseDat e property .
  49        * 
  50        * @re turn
  51        *      possible  object is
  52        *      {@link XM LGregorian Calendar }
  53        *      
  54        */
  55       public  XMLGregor ianCalenda r getDispe nseDate()  {
  56           re turn dispe nseDate;
  57       }
  58  
  59       /**
  60        * Set s the valu e of the d ispenseDat e property .
  61        * 
  62        * @pa ram value
  63        *      allowed o bject is
  64        *      {@link XM LGregorian Calendar }
  65        *      
  66        */
  67       public  void setD ispenseDat e(XMLGrego rianCalend ar value)  {
  68           th is.dispens eDate = va lue;
  69       }
  70  
  71       /**
  72        * Get s the valu e of the d ispensingP harmacy pr operty.
  73        * 
  74        * @re turn
  75        *      possible  object is
  76        *      {@link St ring }
  77        *      
  78        */
  79       public  String ge tDispensin gPharmacy( ) {
  80           re turn dispe nsingPharm acy;
  81       }
  82  
  83       /**
  84        * Set s the valu e of the d ispensingP harmacy pr operty.
  85        * 
  86        * @pa ram value
  87        *      allowed o bject is
  88        *      {@link St ring }
  89        *      
  90        */
  91       public  void setD ispensingP harmacy(St ring value ) {
  92           th is.dispens ingPharmac y = value;
  93       }
  94  
  95       /**
  96        * Get s the valu e of the d ispensingQ uantity pr operty.
  97        * 
  98        * @re turn
  99        *      possible  object is
  100        *      {@link St ring }
  101        *      
  102        */
  103       public  String ge tDispensin gQuantity( ) {
  104           re turn dispe nsingQuant ity;
  105       }
  106  
  107       /**
  108        * Set s the valu e of the d ispensingQ uantity pr operty.
  109        * 
  110        * @pa ram value
  111        *      allowed o bject is
  112        *      {@link St ring }
  113        *      
  114        */
  115       public  void setD ispensingQ uantity(St ring value ) {
  116           th is.dispens ingQuantit y = value;
  117       }
  118  
  119   }