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

3508.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 HardshipInfo.java Fri Apr 21 20:03:26 2017 UTC

3508.2 Comparison summary

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

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

3508.4 Active regular expressions

No regular expressions were active.

3508.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.XmlSche maType;
        7   import jav ax.xml.bin d.annotati on.XmlType ;
        8   import jav ax.xml.dat atype.XMLG regorianCa lendar;
        9  
        10  
        11   /**
        12    * <p>Java  class for  hardshipI nfo comple x type.
        13    * 
        14    * <p>The  following  schema fra gment spec ifies the  expected c ontent con tained wit hin this c lass.
        15    * 
        16    * <pre>
        17    * &lt;com plexType n ame="hards hipInfo">
        18    *   &lt;c omplexCont ent>
        19    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        20    *       & lt;all>
        21    *          &lt;eleme nt name="e ffectiveDa te" type=" {http://ww w.w3.org/2 001/XMLSch ema}dateTi me" minOcc urs="0"/>
        22    *          &lt;eleme nt name="h ardshipGra nted" type ="{http:// www.w3.org /2001/XMLS chema}bool ean" minOc curs="0"/>
        23    *          &lt;eleme nt name="r eason" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/>
        24    *          &lt;eleme nt name="r eviewDate"  type="{ht tp://www.w 3.org/2001 /XMLSchema }dateTime"  minOccurs ="0"/>
        25    *          &lt;eleme nt name="s iteGrantin gHardship"  type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/>
        26    *       & lt;/all>
        27    *     &lt ;/restrict ion>
        28    *   &lt;/ complexCon tent>
        29    * &lt;/co mplexType>
        30    * </pre>
        31    * 
        32    * 
        33    */
        34   @XmlAccess orType(Xml AccessType .FIELD)
        35   @XmlType(n ame = "har dshipInfo" , propOrde r = {
        36  
        37   })
        38   public cla ss Hardshi pInfo {
        39  
        40       @XmlSc hemaType(n ame = "dat eTime")
        41       protec ted XMLGre gorianCale ndar effec tiveDate;
        42       protec ted Boolea n hardship Granted;
        43       protec ted String  reason;
        44       @XmlSc hemaType(n ame = "dat eTime")
        45       protec ted XMLGre gorianCale ndar revie wDate;
        46       protec ted String  siteGrant ingHardshi p;
        47  
        48       /**
        49        * Get s the valu e of the e ffectiveDa te propert y.
        50        * 
        51        * @re turn
        52        *      possible  object is
        53        *      {@link XM LGregorian Calendar }
        54        *      
        55        */
        56       public  XMLGregor ianCalenda r getEffec tiveDate()  {
        57           re turn effec tiveDate;
        58       }
        59  
        60       /**
        61        * Set s the valu e of the e ffectiveDa te propert y.
        62        * 
        63        * @pa ram value
        64        *      allowed o bject is
        65        *      {@link XM LGregorian Calendar }
        66        *      
        67        */
        68       public  void setE ffectiveDa te(XMLGreg orianCalen dar value)  {
        69           th is.effecti veDate = v alue;
        70       }
        71  
        72       /**
        73        * Get s the valu e of the h ardshipGra nted prope rty.
        74        * 
        75        * @re turn
        76        *      possible  object is
        77        *      {@link Bo olean }
        78        *      
        79        */
        80       public  Boolean i sHardshipG ranted() {
        81           re turn hards hipGranted ;
        82       }
        83  
        84       /**
        85        * Set s the valu e of the h ardshipGra nted prope rty.
        86        * 
        87        * @pa ram value
        88        *      allowed o bject is
        89        *      {@link Bo olean }
        90        *      
        91        */
        92       public  void setH ardshipGra nted(Boole an value)  {
        93           th is.hardshi pGranted =  value;
        94       }
        95  
        96       /**
        97        * Get s the valu e of the r eason prop erty.
        98        * 
        99        * @re turn
        100        *      possible  object is
        101        *      {@link St ring }
        102        *      
        103        */
        104       public  String ge tReason()  {
        105           re turn reaso n;
        106       }
        107  
        108       /**
        109        * Set s the valu e of the r eason prop erty.
        110        * 
        111        * @pa ram value
        112        *      allowed o bject is
        113        *      {@link St ring }
        114        *      
        115        */
        116       public  void setR eason(Stri ng value)  {
        117           th is.reason  = value;
        118       }
        119  
        120       /**
        121        * Get s the valu e of the r eviewDate  property.
        122        * 
        123        * @re turn
        124        *      possible  object is
        125        *      {@link XM LGregorian Calendar }
        126        *      
        127        */
        128       public  XMLGregor ianCalenda r getRevie wDate() {
        129           re turn revie wDate;
        130       }
        131  
        132       /**
        133        * Set s the valu e of the r eviewDate  property.
        134        * 
        135        * @pa ram value
        136        *      allowed o bject is
        137        *      {@link XM LGregorian Calendar }
        138        *      
        139        */
        140       public  void setR eviewDate( XMLGregori anCalendar  value) {
        141           th is.reviewD ate = valu e;
        142       }
        143  
        144       /**
        145        * Get s the valu e of the s iteGrantin gHardship  property.
        146        * 
        147        * @re turn
        148        *      possible  object is
        149        *      {@link St ring }
        150        *      
        151        */
        152       public  String ge tSiteGrant ingHardshi p() {
        153           re turn siteG rantingHar dship;
        154       }
        155  
        156       /**
        157        * Set s the valu e of the s iteGrantin gHardship  property.
        158        * 
        159        * @pa ram value
        160        *      allowed o bject is
        161        *      {@link St ring }
        162        *      
        163        */
        164       public  void setS iteGrantin gHardship( String val ue) {
        165           th is.siteGra ntingHards hip = valu e;
        166       }
        167  
        168   }