4224. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/5/2018 9:06:37 PM Central 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.

4224.1 Files compared

# Location File Last Modified
1 MHEDP3_VAOS_VATS_SM_Sept2018.zip\VAR 4.5.2\var-resources-4.5.2.zip\VeteranAppointmentRequestService\src\main\java\com\agilex\healthcare\veteranappointment\datalayer\appointment DetailCodePo.java Wed Aug 15 03:28:53 2018 UTC
2 MHEDP3_VAOS_VATS_SM_Sept2018.zip\VAR 4.5.2\var-resources-4.5.2.zip\VeteranAppointmentRequestService\src\main\java\com\agilex\healthcare\veteranappointment\datalayer\appointment DetailCodePo.java Fri Oct 5 21:46:24 2018 UTC

4224.2 Comparison summary

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

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

4224.4 Active regular expressions

No regular expressions were active.

4224.5 Comparison detail

  1   package co m.agilex.h ealthcare. veteranapp ointment.d atalayer.a ppointment ;
  2  
  3   import com .agilex.he althcare.v eteranappo intment.da talayer.Pe rsistenceO bject;
  4   import com .agilex.he althcare.v eteranappo intment.da talayer.Tr ansformabl e;
  5   import com .agilex.he althcare.v eteranappo intment.do main.VARDe tailCode;
  6   import com .thoughtwo rks.xstrea m.annotati ons.XStrea mAlias;
  7  
  8   import jav ax.persist ence.Colum n;
  9   import jav ax.persist ence.Entit y;
  10   import jav ax.persist ence.Id;
  11   import jav ax.persist ence.Table ;
  12  
  13   @Entity
  14   @Table(nam e = "DETAI L_CODE")
  15   @XStreamAl ias("Detai lCode")
  16   public cla ss DetailC odePo exte nds Persis tenceObjec t implemen ts Transfo rmable<VAR DetailCode > {
  17           
  18           pr ivate stat ic final l ong serial VersionUID  = -453829 3786391954 349L;
  19           
  20           pr ivate Stri ng code;
  21           pr ivate Stri ng provide rMessage;
  22           pr ivate Stri ng veteran Message;
  23  
  24           pu blic Detai lCodePo()  {
  25           }
  26           
  27           pu blic Detai lCodePo(VA RDetailCod e dto) {
  28                    setC ode(dto.ge tCode());
  29                    setP roviderMes sage(dto.g etProvider Message()) ;
  30                    setV eteranMess age(dto.ge tVeteranMe ssage());
  31           }
  32           
  33           @I d
  34           @C olumn(name  = "DETAIL _CODE_ID")
  35           pu blic Strin g getCode( ) {
  36                    retu rn code;
  37           }
  38  
  39           pu blic void  setCode(St ring code)  {
  40                    this .code = co de;
  41           }
  42  
  43           @C olumn(name  = "PROVID ER_MESSAGE ")
  44           pu blic Strin g getProvi derMessage () {
  45                    retu rn provide rMessage;
  46           }
  47  
  48           pu blic void  setProvide rMessage(S tring prov iderMessag e) {
  49                    this .providerM essage = p roviderMes sage;
  50           }
  51  
  52           @C olumn(name  = "VETERA N_MESSAGE" )
  53           pu blic Strin g getVeter anMessage( ) {
  54                    retu rn veteran Message;
  55           }
  56  
  57           pu blic void  setVeteran Message(St ring veter anMessage)  {
  58                    this .veteranMe ssage = ve teranMessa ge;
  59           }
  60  
  61           @O verride
  62           pu blic 
D NS    tailCode c reate() {
  63            
D NS    tailCode d to = new 
D NS    tailCode() ;
  64                    dto. setCode(ge tCode());
  65                    dto. setProvide rMessage(g etProvider Message()) ;
  66                    dto. setVeteran Message(ge tVeteranMe ssage());
  67                    
  68                    retu rn dto;
  69           }
  70   }