3019. EPMO Open Source Coordination Office Redaction File Detail Report

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

3019.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:49:42 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-client\src\main\java\gov\va\nvap\privacy\data ConsentComment.java Fri Apr 21 20:03:26 2017 UTC

3019.2 Comparison summary

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

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

3019.4 Active regular expressions

No regular expressions were active.

3019.5 Comparison detail

        1   package go v.va.nvap. privacy.da ta;
        2  
        3   import jav ax.xml.bin d.annotati on.XmlAcce ssType;
        4   import jav ax.xml.bin d.annotati on.XmlAcce ssorType;
        5   import jav ax.xml.bin d.annotati on.XmlElem ent;
        6   import jav ax.xml.bin d.annotati on.XmlRoot Element;
        7   import jav ax.xml.bin d.annotati on.XmlType ;
        8  
        9   /**
        10    *
        11    * @author  Johann So nnenberg
        12    */
        13   /**
        14    * <p>
        15    * Java cl ass for an onymous co mplex type .
        16    * 
        17    * <p>
        18    * The fol lowing sch ema fragme nt specifi es the exp ected cont ent contai ned within
        19    * this cl ass.
        20    * 
        21    * <pre>
        22    * &lt;com plexType>
        23    *   &lt;c omplexCont ent>
        24    *     &lt ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType ">
        25    *       & lt;sequenc e>
        26    *          &lt;eleme nt name="c ommentId"  type="{htt p://www.w3 .org/2001/ XMLSchema} string"/>
        27    *          &lt;eleme nt name="u serId" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing"/>
        28    *          &lt;eleme nt name="d ateAdded"  type="{htt p://www.w3 .org/2001/ XMLSchema} string"/>
        29    *          &lt;eleme nt name="c omments" t ype="{http ://www.w3. org/2001/X MLSchema}s tring"/>
        30    *          &lt;eleme nt name="c onsentId"  type="{htt p://www.w3 .org/2001/ XMLSchema} string"/>
        31    *          &lt;eleme nt name="c onsentType " type="{h ttp://www. w3.org/200 1/XMLSchem a}string"/ >
        32    *       & lt;/sequen ce>
        33    *     &lt ;/restrict ion>
        34    *   &lt;/ complexCon tent>
        35    * &lt;/co mplexType>
        36    * </pre>
        37    * 
        38    * 
        39    */
        40   @XmlAccess orType(Xml AccessType .FIELD)
        41   @XmlType(n ame = "",  propOrder  = { "comme ntId", "us erId", "da teAdded",
        42                    "com ments", "c onsentId",  "consentT ype" })
        43   @XmlRootEl ement(name  = "Consen tComment")
        44   public cla ss Consent Comment {
        45       @XmlEl ement(requ ired = tru e)
        46       protec ted String  commentId ;
        47       @XmlEl ement(requ ired = tru e)
        48       protec ted String  userId;
        49       @XmlEl ement(requ ired = tru e)
        50       protec ted String  dateAdded ;
        51       @XmlEl ement(requ ired = tru e)
        52       protec ted String  comments;
        53       @XmlEl ement(requ ired = tru e)
        54       protec ted String  consentId ;
        55       @XmlEl ement(requ ired = tru e)
        56       protec ted String  consentTy pe;
        57       
        58       public  String ge tCommentId () {
        59           re turn this. commentId;
        60       }
        61       
        62       public  String ge tUserId()  {
        63           re turn this. userId;
        64       }
        65       
        66       public  String ge tDateAdded () {
        67           re turn this. dateAdded;
        68       }
        69       
        70       public  String ge tComments( ) {
        71           re turn this. comments;
        72       }
        73       
        74       public  String ge tConsentId () {
        75           re turn this. consentId;
        76       }
        77       
        78       public  String ge tConsentTy pe() {
        79           re turn this. consentTyp e;
        80       }
        81       
        82       public  void setC ommentId(S tring comm entId) {
        83           th is.comment Id = comme ntId;
        84       }
        85       
        86       public  void setU serId(Stri ng userId)  {
        87           th is.userId  = userId;
        88       }
        89       
        90       public  void setD ateAdded(S tring date Added) {
        91           th is.dateAdd ed = dateA dded;
        92       }
        93       
        94       public  void setC omments(St ring comme nts) {
        95           th is.comment s = commen ts;
        96       }
        97       
        98       public  void setC onsentId(S tring cons entId) {
        99           th is.consent Id = conse ntId;
        100       }
        101       
        102       public  void setC onsentType (String co nsentType)  {
        103           th is.consent Type = con sentType;
        104       }
        105   }