3461. EPMO Open Source Coordination Office Redaction File Detail Report

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

3461.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:16 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\esr\webservices\jaxws\schemas BaseFinancialInfo.java Wed Jun 7 05:11:56 2017 UTC

3461.2 Comparison summary

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

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

3461.4 Active regular expressions

No regular expressions were active.

3461.5 Comparison detail

        1  
        2   package go v.va.med.e sr.webserv ices.jaxws .schemas;
        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.XmlType ;
        7  
        8  
        9   /**
        10    * <p>Java  class for  baseFinan cialInfo c omplex typ e.
        11    * 
        12    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        13    * 
        14    * <pre>
        15    * &lt;com plexType n ame="baseF inancialIn fo">
        16    *   &lt;c omplexCont ent>
        17    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        18    *       & lt;all>
        19    *          &lt;eleme nt name="a ssets" typ e="{http:/ /URL.DNS}a ssetCollec tion" minO ccurs="0"/ >
        20    *          &lt;eleme nt name="d ebits" typ e="{http:/ /URL.DNS}d ebitInfo"  minOccurs= "0"/>
        21    *          &lt;eleme nt name="e xpenses" t ype="{http ://URL.DNS }expenseCo llection"  minOccurs= "0"/>
        22    *          &lt;eleme nt name="i ncomeYear"  type="{ht tp://www.w 3.org/2001 /XMLSchema }int" minO ccurs="0"/ >
        23    *          &lt;eleme nt name="i ncomes" ty pe="{http: //URL.DNS} incomeColl ection" mi nOccurs="0 "/>
        24    *       & lt;/all>
        25    *     &lt ;/restrict ion>
        26    *   &lt;/ complexCon tent>
        27    * &lt;/co mplexType>
        28    * </pre>
        29    * 
        30    * 
        31    */
        32   @XmlAccess orType(Xml AccessType .FIELD)
        33   @XmlType(n ame = "bas eFinancial Info", pro pOrder = {
        34  
        35   })
        36   public abs tract clas s BaseFina ncialInfo  {
        37  
        38       protec ted AssetC ollection  assets;
        39       protec ted DebitI nfo debits ;
        40       protec ted Expens eCollectio n expenses ;
        41       protec ted Intege r incomeYe ar;
        42       protec ted Income Collection  incomes;
        43  
        44       /**
        45        * Get s the valu e of the a ssets prop erty.
        46        * 
        47        * @re turn
        48        *      possible  object is
        49        *      {@link As setCollect ion }
        50        *      
        51        */
        52       public  AssetColl ection get Assets() {
        53           re turn asset s;
        54       }
        55  
        56       /**
        57        * Set s the valu e of the a ssets prop erty.
        58        * 
        59        * @pa ram value
        60        *      allowed o bject is
        61        *      {@link As setCollect ion }
        62        *      
        63        */
        64       public  void setA ssets(Asse tCollectio n value) {
        65           th is.assets  = value;
        66       }
        67  
        68       /**
        69        * Get s the valu e of the d ebits prop erty.
        70        * 
        71        * @re turn
        72        *      possible  object is
        73        *      {@link De bitInfo }
        74        *      
        75        */
        76       public  DebitInfo  getDebits () {
        77           re turn debit s;
        78       }
        79  
        80       /**
        81        * Set s the valu e of the d ebits prop erty.
        82        * 
        83        * @pa ram value
        84        *      allowed o bject is
        85        *      {@link De bitInfo }
        86        *      
        87        */
        88       public  void setD ebits(Debi tInfo valu e) {
        89           th is.debits  = value;
        90       }
        91  
        92       /**
        93        * Get s the valu e of the e xpenses pr operty.
        94        * 
        95        * @re turn
        96        *      possible  object is
        97        *      {@link Ex penseColle ction }
        98        *      
        99        */
        100       public  ExpenseCo llection g etExpenses () {
        101           re turn expen ses;
        102       }
        103  
        104       /**
        105        * Set s the valu e of the e xpenses pr operty.
        106        * 
        107        * @pa ram value
        108        *      allowed o bject is
        109        *      {@link Ex penseColle ction }
        110        *      
        111        */
        112       public  void setE xpenses(Ex penseColle ction valu e) {
        113           th is.expense s = value;
        114       }
        115  
        116       /**
        117        * Get s the valu e of the i ncomeYear  property.
        118        * 
        119        * @re turn
        120        *      possible  object is
        121        *      {@link In teger }
        122        *      
        123        */
        124       public  Integer g etIncomeYe ar() {
        125           re turn incom eYear;
        126       }
        127  
        128       /**
        129        * Set s the valu e of the i ncomeYear  property.
        130        * 
        131        * @pa ram value
        132        *      allowed o bject is
        133        *      {@link In teger }
        134        *      
        135        */
        136       public  void setI ncomeYear( Integer va lue) {
        137           th is.incomeY ear = valu e;
        138       }
        139  
        140       /**
        141        * Get s the valu e of the i ncomes pro perty.
        142        * 
        143        * @re turn
        144        *      possible  object is
        145        *      {@link In comeCollec tion }
        146        *      
        147        */
        148       public  IncomeCol lection ge tIncomes()  {
        149           re turn incom es;
        150       }
        151  
        152       /**
        153        * Set s the valu e of the i ncomes pro perty.
        154        * 
        155        * @pa ram value
        156        *      allowed o bject is
        157        *      {@link In comeCollec tion }
        158        *      
        159        */
        160       public  void setI ncomes(Inc omeCollect ion value)  {
        161           th is.incomes  = value;
        162       }
        163  
        164   }