613. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/5/2017 4:25:32 PM 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.

613.1 Files compared

# Location File Last Modified
1 C:\working_scrub\Unredacted\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\nhin\adapter\announce BatchAnnounceType.java Wed Feb 1 18:37:28 2017 UTC
2 eHX-CIF.zip\eHX-CIF\VAP Code Base\VAP_Bld2_Source_Code_CIF_2017-02-14\nvap-ext-svc-proxy\src\main\java\gov\va\med\nhin\adapter\announce BatchAnnounceType.java Mon Apr 3 14:03:15 2017 UTC

613.2 Comparison summary

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

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

613.4 Active regular expressions

No regular expressions were active.

613.5 Comparison detail

  1   /**
  2    *
  3    */
  4   package go v.va.med.n hin.adapte r.announce ;
  5  
  6   import jav a.io.Seria lizable;
  7  
  8   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
  9   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
  10   import jav ax.xml.bin d.annotati on.XmlElem ent;
  11   import jav ax.xml.bin d.annotati on.XmlType ;
  12  
  13   /**
  14    * @author   DN S      SCHRAS
  15    *
  16    */
  17   @XmlAccess orType(Xml AccessType .FIELD)
  18   @XmlType(n ame = "Bat chAnnounce Type", pro pOrder = {
  19       "batch Ids",
  20       "user" ,
  21       "facil ity",
  22       "maxBa tchSize"
  23   })
  24   public cla ss BatchAn nounceType  implement s Serializ able
  25   {
  26       privat e static f inal long  serialVers ionUID = 4 6566104660 16616692L;
  27  
  28       @XmlEl ement(requ ired = tru e)
  29       protec ted String [] batchId s;
  30       protec ted String  user;
  31       protec ted String  facility;
  32       protec ted int ma xBatchSize ;
  33  
  34       public  String[]  getBatchId s() {
  35           re turn batch Ids;
  36       }
  37  
  38       public  void setB atchIds(St ring[] bat chIds) {
  39           th is.batchId s = batchI ds;
  40       }
  41  
  42       public  int getMa xBatchSize () {
  43           re turn maxBa tchSize;
  44       }
  45  
  46       public  void setM axBatchSiz e(int maxB atchSize)  {
  47           th is.maxBatc hSize = ma xBatchSize ;
  48       }
  49  
  50       public  String ge tUser() {
  51           re turn user;
  52       }
  53  
  54       public  void setU ser(String  user) {
  55           th is.user =  user;
  56       }
  57  
  58       public  String ge tFacility( ) {
  59                    retu rn facilit y;
  60           }
  61  
  62       public  void setF acility(St ring facil ity) {
  63                    this .facility  = facility ;
  64           }
  65   }