16. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/28/2017 4:44:48 PM Eastern Standard 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.

16.1 Files compared

# Location File Last Modified
1 admin_portal_reeng_2018.1.0.0.zip\admin portal reeng\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\formbean ManagedStaffMember.java Fri Sep 8 21:00:20 2017 UTC
2 admin_portal_reeng_2018.1.0.0.zip\admin portal reeng\mhv_source\mhv_admin\mhv-admin-portlet\src\main\java\gov\va\med\mhv\admin\web\formbean ManagedStaffMember.java Tue Nov 28 20:48:04 2017 UTC

16.2 Comparison summary

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

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

16.4 Active regular expressions

No regular expressions were active.

16.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   PI I
  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           pu blic Emplo yeeDTO get LdapEmploy eeToManage () {
  28                    retu rn ldapEmp loyeeToMan age;
  29           }
  30  
  31           pu blic void  setLdapEmp loyeeToMan age(Employ eeDTO empl oyeeToMana ge) {
  32                    this .ldapEmplo yeeToManag e = employ eeToManage ;
  33           }
  34  
  35           pu blic List< EmployeeOr gRoleHisto ryDTO> get RoleHistor iesForEmpl oyee() {
  36                    retu rn roleHis toriesForE mployee;
  37           }
  38  
  39           pu blic void  setRoleHis toriesForE mployee(Li st<Employe eOrgRoleHi storyDTO>  roleHistor iesForEmpl oyee) {
  40                    this .roleHisto riesForEmp loyee = ro leHistorie sForEmploy ee;
  41           }
  42  
  43           pu blic Emplo yeeDTO get ManagedEmp loyee() {
  44                    retu rn managed Employee;
  45           }
  46  
  47           pu blic void  setManaged Employee(E mployeeDTO  managedEm ployee) {
  48                    this .managedEm ployee = m anagedEmpl oyee;
  49           }
  50  
  51           pu blic Emplo yeeSearchR esult getL dapEmploye e() {
  52                    retu rn ldapEmp loyee;
  53           }
  54  
  55           pu blic void  setLdapEmp loyee(Empl oyeeSearch Result lda pEmployee)  {
  56                    this .ldapEmplo yee = ldap Employee;
  57           }
  58  
  59           pu blic void  clearEmplo yeeData()  {
  60                    mana gedEmploye e = null;
  61                    ldap Employee =  null;
  62                    ldap EmployeeTo Manage = n ull;
  63                    role HistoriesF orEmployee  = null;
  64           }
  65  
  66   }