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

3467.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:17 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 CategoryInfo.java Fri Apr 21 20:03:26 2017 UTC

3467.2 Comparison summary

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

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

3467.4 Active regular expressions

No regular expressions were active.

3467.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.XmlElem ent;
        7   import jav ax.xml.bin d.annotati on.XmlSche maType;
        8   import jav ax.xml.bin d.annotati on.XmlType ;
        9   import jav ax.xml.dat atype.XMLG regorianCa lendar;
        10  
        11  
        12   /**
        13    * <p>Java  class for  categoryI nfo comple x type.
        14    * 
        15    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        16    * 
        17    * <pre>
        18    * &lt;com plexType n ame="categ oryInfo">
        19    *   &lt;c omplexCont ent>
        20    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        21    *       & lt;all>
        22    *          &lt;eleme nt name="c ategoryNam e" type="{ http://www .w3.org/20 01/XMLSche ma}string" />
        23    *          &lt;eleme nt name="d ateOfServi ce" type=" {http://ww w.w3.org/2 001/XMLSch ema}date"/ >
        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 = "cat egoryInfo" , propOrde r = {
        34  
        35   })
        36   public cla ss Categor yInfo {
        37  
        38       @XmlEl ement(requ ired = tru e)
        39       protec ted String  categoryN ame;
        40       @XmlEl ement(requ ired = tru e)
        41       @XmlSc hemaType(n ame = "dat e")
        42       protec ted XMLGre gorianCale ndar dateO fService;
        43  
        44       /**
        45        * Get s the valu e of the c ategoryNam e property .
        46        * 
        47        * @re turn
        48        *      possible  object is
        49        *      {@link St ring }
        50        *      
        51        */
        52       public  String ge tCategoryN ame() {
        53           re turn categ oryName;
        54       }
        55  
        56       /**
        57        * Set s the valu e of the c ategoryNam e property .
        58        * 
        59        * @pa ram value
        60        *      allowed o bject is
        61        *      {@link St ring }
        62        *      
        63        */
        64       public  void setC ategoryNam e(String v alue) {
        65           th is.categor yName = va lue;
        66       }
        67  
        68       /**
        69        * Get s the valu e of the d ateOfServi ce propert y.
        70        * 
        71        * @re turn
        72        *      possible  object is
        73        *      {@link XM LGregorian Calendar }
        74        *      
        75        */
        76       public  XMLGregor ianCalenda r getDateO fService()  {
        77           re turn dateO fService;
        78       }
        79  
        80       /**
        81        * Set s the valu e of the d ateOfServi ce propert y.
        82        * 
        83        * @pa ram value
        84        *      allowed o bject is
        85        *      {@link XM LGregorian Calendar }
        86        *      
        87        */
        88       public  void setD ateOfServi ce(XMLGreg orianCalen dar value)  {
        89           th is.dateOfS ervice = v alue;
        90       }
        91  
        92   }