3554. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:50:19 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.

3554.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:19 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-ext-svc-proxy\src\main\java\gov\va\med\nhin\adapter\announce BatchAnnounceType.java Wed Jun 7 05:05:54 2017 UTC

3554.2 Comparison summary

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

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

3554.4 Active regular expressions

No regular expressions were active.

3554.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  DNS   
        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   }