190. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/15/2018 10:48:57 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.

190.1 Files compared

# Location File Last Modified
1 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_user\mhv-usermgmt-portal-api\src\main\java\gov\va\med\mhv\usermgmt\common\dto DirectMessageDTO.java Thu Aug 23 20:25:24 2018 UTC
2 MHV_2018.4.0.0.zip\2018.4.0.0\national portal\mhv_source\mhv_user\mhv-usermgmt-portal-api\src\main\java\gov\va\med\mhv\usermgmt\common\dto DirectMessageDTO.java Sat Sep 15 22:35:14 2018 UTC

190.2 Comparison summary

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

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

190.4 Active regular expressions

No regular expressions were active.

190.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.m hv.usermgm t.common.d to;
  5  
  6   import jav a.util.Dat e;
  7  
  8   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  9  
  10   /**
  11    * @author   DNS
  12    *
  13    */
  14   @XmlRootEl ement(name ="directMe ssage")
  15   public cla ss DirectM essageDTO  {
  16  
  17           pr ivate Long  directMes sageId;
  18           
  19           pr ivate Long  userProfi leId;
  20  
  21           pr ivate Stri ng message Id;
  22           
  23           pr ivate Stri ng sentToE mailAddres s;
  24           
  25           pr ivate Stri ng directM essageStat us;
  26           
  27           pr ivate Date  createdDa te;
  28           
  29           pr ivate Date  modifiedD ate;
  30  
  31           pu blic Long  getDirectM essageId()  {
  32                    retu rn directM essageId;
  33           }
  34  
  35           pu blic void  setDirectM essageId(L ong direct MessageId)  {
  36                    this .directMes sageId = d irectMessa geId;
  37           }
  38  
  39           pu blic Long  getUserPro fileId() {
  40                    retu rn userPro fileId;
  41           }
  42  
  43           pu blic void  setUserPro fileId(Lon g userProf ileId) {
  44                    this .userProfi leId = use rProfileId ;
  45           }
  46  
  47           pu blic Strin g getMessa geId() {
  48                    retu rn message Id;
  49           }
  50  
  51           pu blic void  setMessage Id(String  messageId)  {
  52                    this .messageId  = message Id;
  53           }
  54  
  55           pu blic Strin g getSentT oEmailAddr ess() {
  56                    retu rn sentToE mailAddres s;
  57           }
  58  
  59           pu blic void  setSentToE mailAddres s(String s entToEmail Address) {
  60                    this .sentToEma ilAddress  = sentToEm ailAddress ;
  61           }
  62  
  63           pu blic Strin g getDirec tMessageSt atus() {
  64                    retu rn directM essageStat us;
  65           }
  66           
  67           pu blic void  setDirectM essageStat us(String  directMess ageStatus)  {
  68                    this .directMes sageStatus  = directM essageStat us;
  69           }
  70  
  71           pu blic Date  getCreated Date() {
  72                    retu rn created Date;
  73           }
  74  
  75           pu blic void  setCreated Date(Date  createdDat e) {
  76                    this .createdDa te = creat edDate;
  77           }
  78  
  79           pu blic Date  getModifie dDate() {
  80                    retu rn modifie dDate;
  81           }
  82  
  83           pu blic void  setModifie dDate(Date  modifiedD ate) {
  84                    this .modifiedD ate = modi fiedDate;
  85           }
  86           
  87   }