76. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2017 3:13:57 PM Eastern 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.

76.1 Files compared

# Location File Last Modified
1 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde UpdateDeliveryPreferenceRequest.java Fri Aug 26 21:28:58 2016 UTC
2 PRE-Inbound-eRx-2.0.3.040.zip\PS_INB_ERX_Common\src\main\java\gov\va\med\pharmacy\wsclients\eAnde UpdateDeliveryPreferenceRequest.java Tue Apr 25 20:39:52 2017 UTC

76.2 Comparison summary

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

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

76.4 Active regular expressions

No regular expressions were active.

76.5 Comparison detail

  1  
  2   package go v.va.med.p harmacy.ws clients.eA nde;
  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.XmlElem ent;
  7   import jav ax.xml.bin d.annotati on.XmlType ;
  8  
  9  
  10   /**
  11    * <p>Java  class for  updateDel iveryPrefe renceReque st complex  type.
  12    * 
  13    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
  14    * 
  15    * <pre>
  16    * &lt;com plexType n ame="updat eDeliveryP referenceR equest"&gt ;
  17    *   &lt;c omplexCont ent&gt;
  18    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "&gt;
  19    *       & lt;all&gt;
  20    *          &lt;eleme nt name="k ey" type=" {http://ww w.w3.org/2 001/XMLSch ema}string "/&gt;
  21    *          &lt;eleme nt name="k eyType" ty pe="{http: //www.w3.o rg/2001/XM LSchema}st ring" minO ccurs="0"/ &gt;
  22    *           &lt;elemen t name="de liveryPref erenceInfo " type="{h ttp:// DNS . URL         /schemas}d eliveryPre ferenceInf o"/&gt;
  23    *       & lt;/all&gt ;
  24    *     &lt ;/restrict ion&gt;
  25    *   &lt;/ complexCon tent&gt;
  26    * &lt;/co mplexType& gt;
  27    * </pre>
  28    * 
  29    * 
  30    */
  31   @XmlAccess orType(Xml AccessType .FIELD)
  32   @XmlType(n ame = "upd ateDeliver yPreferenc eRequest",  propOrder  = {
  33  
  34   })
  35   public cla ss UpdateD eliveryPre ferenceReq uest {
  36  
  37       @XmlEl ement(requ ired = tru e)
  38       protec ted String  key;
  39       protec ted String  keyType;
  40       @XmlEl ement(requ ired = tru e)
  41       protec ted Delive ryPreferen ceInfo del iveryPrefe renceInfo;
  42  
  43       /**
  44        * Get s the valu e of the k ey propert y.
  45        * 
  46        * @re turn
  47        *      possible  object is
  48        *      {@link St ring }
  49        *      
  50        */
  51       public  String ge tKey() {
  52           re turn key;
  53       }
  54  
  55       /**
  56        * Set s the valu e of the k ey propert y.
  57        * 
  58        * @pa ram value
  59        *      allowed o bject is
  60        *      {@link St ring }
  61        *      
  62        */
  63       public  void setK ey(String  value) {
  64           th is.key = v alue;
  65       }
  66  
  67       /**
  68        * Get s the valu e of the k eyType pro perty.
  69        * 
  70        * @re turn
  71        *      possible  object is
  72        *      {@link St ring }
  73        *      
  74        */
  75       public  String ge tKeyType()  {
  76           re turn keyTy pe;
  77       }
  78  
  79       /**
  80        * Set s the valu e of the k eyType pro perty.
  81        * 
  82        * @pa ram value
  83        *      allowed o bject is
  84        *      {@link St ring }
  85        *      
  86        */
  87       public  void setK eyType(Str ing value)  {
  88           th is.keyType  = value;
  89       }
  90  
  91       /**
  92        * Get s the valu e of the d eliveryPre ferenceInf o property .
  93        * 
  94        * @re turn
  95        *      possible  object is
  96        *      {@link De liveryPref erenceInfo  }
  97        *      
  98        */
  99       public  DeliveryP referenceI nfo getDel iveryPrefe renceInfo( ) {
  100           re turn deliv eryPrefere nceInfo;
  101       }
  102  
  103       /**
  104        * Set s the valu e of the d eliveryPre ferenceInf o property .
  105        * 
  106        * @pa ram value
  107        *      allowed o bject is
  108        *      {@link De liveryPref erenceInfo  }
  109        *      
  110        */
  111       public  void setD eliveryPre ferenceInf o(Delivery Preference Info value ) {
  112           th is.deliver yPreferenc eInfo = va lue;
  113       }
  114  
  115   }