3533. EPMO Open Source Coordination Office Redaction File Detail Report

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

3533.1 Files compared

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

3533.2 Comparison summary

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

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

3533.4 Active regular expressions

No regular expressions were active.

3533.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  powEpisod eInfo comp lex type.
        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="powEp isodeInfo" >
        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="c aptureDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
        20    *          &lt;eleme nt name="d ataSource"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
        21    *          &lt;eleme nt name="d ocumentTyp e" type="{ http://www .w3.org/20 01/XMLSche ma}string"  minOccurs ="0"/>
        22    *          &lt;eleme nt name="r eleaseDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"  minOccurs= "0"/>
        23    *       & lt;/all>
        24    *     &lt ;/restrict ion>
        25    *   &lt;/ complexCon tent>
        26    * &lt;/co mplexType>
        27    * </pre>
        28    * 
        29    * 
        30    */
        31   @XmlAccess orType(Xml AccessType .FIELD)
        32   @XmlType(n ame = "pow EpisodeInf o", propOr der = {
        33  
        34   })
        35   public cla ss PowEpis odeInfo {
        36  
        37       protec ted String  captureDa te;
        38       protec ted String  dataSourc e;
        39       protec ted String  documentT ype;
        40       protec ted String  releaseDa te;
        41  
        42       /**
        43        * Get s the valu e of the c aptureDate  property.
        44        * 
        45        * @re turn
        46        *      possible  object is
        47        *      {@link St ring }
        48        *      
        49        */
        50       public  String ge tCaptureDa te() {
        51           re turn captu reDate;
        52       }
        53  
        54       /**
        55        * Set s the valu e of the c aptureDate  property.
        56        * 
        57        * @pa ram value
        58        *      allowed o bject is
        59        *      {@link St ring }
        60        *      
        61        */
        62       public  void setC aptureDate (String va lue) {
        63           th is.capture Date = val ue;
        64       }
        65  
        66       /**
        67        * Get s the valu e of the d ataSource  property.
        68        * 
        69        * @re turn
        70        *      possible  object is
        71        *      {@link St ring }
        72        *      
        73        */
        74       public  String ge tDataSourc e() {
        75           re turn dataS ource;
        76       }
        77  
        78       /**
        79        * Set s the valu e of the d ataSource  property.
        80        * 
        81        * @pa ram value
        82        *      allowed o bject is
        83        *      {@link St ring }
        84        *      
        85        */
        86       public  void setD ataSource( String val ue) {
        87           th is.dataSou rce = valu e;
        88       }
        89  
        90       /**
        91        * Get s the valu e of the d ocumentTyp e property .
        92        * 
        93        * @re turn
        94        *      possible  object is
        95        *      {@link St ring }
        96        *      
        97        */
        98       public  String ge tDocumentT ype() {
        99           re turn docum entType;
        100       }
        101  
        102       /**
        103        * Set s the valu e of the d ocumentTyp e property .
        104        * 
        105        * @pa ram value
        106        *      allowed o bject is
        107        *      {@link St ring }
        108        *      
        109        */
        110       public  void setD ocumentTyp e(String v alue) {
        111           th is.documen tType = va lue;
        112       }
        113  
        114       /**
        115        * Get s the valu e of the r eleaseDate  property.
        116        * 
        117        * @re turn
        118        *      possible  object is
        119        *      {@link St ring }
        120        *      
        121        */
        122       public  String ge tReleaseDa te() {
        123           re turn relea seDate;
        124       }
        125  
        126       /**
        127        * Set s the valu e of the r eleaseDate  property.
        128        * 
        129        * @pa ram value
        130        *      allowed o bject is
        131        *      {@link St ring }
        132        *      
        133        */
        134       public  void setR eleaseDate (String va lue) {
        135           th is.release Date = val ue;
        136       }
        137  
        138   }