61. EPMO Open Source Coordination Office Redaction File Detail Report

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

61.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\controller AdminRestController.java Tue Apr 24 14:49:54 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\controller AdminRestController.java Thu Apr 26 14:54:45 2018 UTC

61.2 Comparison summary

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

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

61.4 Active regular expressions

No regular expressions were active.

61.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.a rs.control ler;
  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.web .bind.anno tation.Get Mapping;
  10   import org .springfra mework.web .bind.anno tation.Req uestMappin g;
  11   import org .springfra mework.web .bind.anno tation.Res tControlle r;
  12  
  13   import gov .va.med.ar s.service. ICustomerS ervice;
  14  
  15   /**
  16    * @author   PI I
  17    *
  18    */
  19   @RestContr oller
  20   @RequestMa pping("/ap i/admin")
  21   public cla ss AdminRe stControll er {
  22           
  23           @A utowired
  24           pr ivate ICus tomerServi ce custome rService;
  25  
  26           
  27           @G etMapping( "/customer s")
  28           pu blic List< ?> getCust omers() {
  29                    //re turn custo merDAO.lis t();
  30                    retu rn custome rService.g etList();
  31           }
  32  
  33   }