2. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/11/2017 8:05:37 AM 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.

2.1 Files compared

# Location File Last Modified
1 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\ap_redesign\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\formbean ManagedStaffMember.java Wed Jul 5 17:41:58 2017 UTC
2 MHV_CIF_2017.4.0.0.zip\MHV_CIF_2017.4.0.0\MHV_CIF_2017.4.0.0\ap_redesign\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\formbean ManagedStaffMember.java Thu Sep 7 18:49:59 2017 UTC

2.2 Comparison summary

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

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

2.4 Active regular expressions

No regular expressions were active.

2.5 Comparison detail

  1   package go v.va.med.m hv.admin.w eb.formbea n;
  2  
  3   import gov .va.med.mh v.admin.dt o.Employee DTO;
  4   import gov .va.med.mh v.admin.dt o.Employee OrgRoleHis toryDTO;
  5   import gov .va.med.mh v.admin.dt o.Employee SearchResu lt;
  6  
  7   import jav a.io.Seria lizable;
  8   import jav a.util.Lis t;
  9  
  10   /**
  11    * This be an was cre ated to ho ld everyth ing about  the employ ee current ly under 
  12    * managem ent. Only  1 can be l oaded at a  time. Thi s class en sures that  no
  13    * lingeri ng parts o f one empl oyee can b e associat ed with an other empl oyee.
  14    * 
  15    * @author   DN S      HODGEJ
  16    *
  17    */
  18   public cla ss Managed StaffMembe r implemen ts Seriali zable {
  19  
  20           pr ivate stat ic final l ong serial VersionUID  = 3462746 6086029505 12L;
  21  
  22           pr ivate Empl oyeeDTO ma nagedEmplo yee = null ;
  23           pr ivate Empl oyeeSearch Result lda pEmployee  = null;
  24           pr ivate Empl oyeeDTO ld apEmployee ToManage =  null;
  25           pr ivate List <EmployeeO rgRoleHist oryDTO> ro leHistorie sForEmploy ee;
  26  
  27           
  28           pu blic Emplo yeeDTO get LdapEmploy eeToManage () {
  29                    retu rn ldapEmp loyeeToMan age;
  30           }
  31  
  32           pu blic void  setLdapEmp loyeeToMan age(Employ eeDTO empl oyeeToMana ge) {
  33                    this .ldapEmplo yeeToManag e = employ eeToManage ;
  34           }
  35  
  36           pu blic List< EmployeeOr gRoleHisto ryDTO> get RoleHistor iesForEmpl oyee() {
  37                    retu rn roleHis toriesForE mployee;
  38           }
  39  
  40           pu blic void  setRoleHis toriesForE mployee(
  41                             List<E mployeeOrg RoleHistor yDTO> role HistoriesF orEmployee ) {
  42                    this .roleHisto riesForEmp loyee = ro leHistorie sForEmploy ee;
  43           }
  44  
  45           pu blic Emplo yeeDTO get ManagedEmp loyee() {
  46                    retu rn managed Employee;
  47           }
  48  
  49           pu blic void  setManaged Employee(E mployeeDTO  managedEm ployee) {
  50                    this .managedEm ployee = m anagedEmpl oyee;
  51           }
  52  
  53           pu blic Emplo yeeSearchR esult getL dapEmploye e() {
  54                    retu rn ldapEmp loyee;
  55           }
  56  
  57           pu blic void  setLdapEmp loyee(Empl oyeeSearch Result lda pEmployee)  {
  58                    this .ldapEmplo yee = ldap Employee;
  59           }
  60           
  61           pu blic void  clearEmplo yeeData()  {
  62                    mana gedEmploye e = null;
  63                    ldap Employee =  null;
  64                    ldap EmployeeTo Manage = n ull;
  65                    role HistoriesF orEmployee  = null;
  66           }
  67  
  68   }