98. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/27/2018 2:59:10 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.

98.1 Files compared

# Location File Last Modified
1 v2.0_Sprint_15_Build_5.zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\service\impl CustomerServiceImpl.java Tue Apr 24 14:50:45 2018 UTC
2 v2.0_Sprint_15_Build_5..zip\v2.0_Sprint_15_Build_5\Unredacted\ARS_Backend\ars_app\src\main\java\gov\va\med\ars\service\impl CustomerServiceImpl.java Thu Apr 26 16:08:35 2018 UTC

98.2 Comparison summary

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

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

98.4 Active regular expressions

No regular expressions were active.

98.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.service .impl;
  5  
  6   import jav a.util.Lis t;
  7  
  8   import org .springfra mework.bea ns.factory .annotatio n.Autowire d;
  9   import org .springfra mework.ste reotype.Se rvice;
  10  
  11   import gov .va.med.ar s.dao.Cust omerDAO;
  12   import gov .va.med.ar s.model.Cu stomer;
  13   import gov .va.med.ar s.service. ICustomerS ervice;
  14  
  15   /**
  16    * @author   PI I
  17    *
  18    */
  19   @Service
  20   public cla ss Custome rServiceIm pl impleme nts ICusto merService  {
  21  
  22           @A utowired
  23           Cu stomerDAO  customerDA O;
  24           
  25           @O verride
  26           pu blic List< ?> getList () {
  27                    retu rn custome rDAO.list( );
  28           }
  29  
  30           @O verride
  31           pu blic Custo mer getCus tomer(Long  id) {
  32                    retu rn custome rDAO.get(i d);
  33           }
  34  
  35           @O verride
  36           pu blic Custo mer update Customer(L ong id, Cu stomer cus tomer) {
  37                    retu rn custome rDAO.updat e(id, cust omer);
  38           }
  39  
  40           @O verride
  41           pu blic Custo mer create Customer(C ustomer cu stomer) {
  42                    retu rn custome rDAO.creat e(customer );
  43           }
  44  
  45           @O verride
  46           pu blic Long  deleteCust omer(Long  id) {
  47                    retu rn custome rDAO.delet e(id);
  48           }
  49  
  50   }