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

57.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\configuration\spring SpringMvcConfig.java Tue Apr 24 14:50:46 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\configuration\spring SpringMvcConfig.java Thu Apr 26 14:21:42 2018 UTC

57.2 Comparison summary

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

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

57.4 Active regular expressions

No regular expressions were active.

57.5 Comparison detail

  1   package go v.va.med.a rs.configu ration.spr ing;
  2  
  3   import org .springfra mework.con text.annot ation.Bean ;
  4   import org .springfra mework.con text.annot ation.Comp onentScan;
  5   import org .springfra mework.con text.annot ation.Conf iguration;
  6   import org .springfra mework.web .client.Re stTemplate ;
  7   import org .springfra mework.web .servlet.V iewResolve r;
  8   import org .springfra mework.web .servlet.c onfig.anno tation.Def aultServle tHandlerCo nfigurer;
  9   import org .springfra mework.web .servlet.c onfig.anno tation.Ena bleWebMvc;
  10   import org .springfra mework.web .servlet.c onfig.anno tation.Res ourceHandl erRegistry ;
  11   import org .springfra mework.web .servlet.c onfig.anno tation.Web MvcConfigu rerAdapter ;
  12   import org .springfra mework.web .servlet.v iew.Intern alResource ViewResolv er;
  13   import org .springfra mework.web .servlet.v iew.JstlVi ew;
  14  
  15   /*import g ov.va.med. fee.loggin g.LoggingH andler;*/
  16  
  17   /**
  18    * @author   PI I
  19    *
  20    */
  21  
  22   @Configura tion
  23   @Component Scan(baseP ackages={" gov.va.med "})
  24   @EnableWeb Mvc
  25   public cla ss SpringM vcConfig e xtends Web MvcConfigu rerAdapter  {
  26  
  27           @O verride
  28           pu blic void  configureD efaultServ letHandlin g(DefaultS ervletHand lerConfigu rer config urer) {
  29                    conf igurer.ena ble();
  30           }
  31           
  32           @O verride
  33           pu blic void  addResourc eHandlers( ResourceHa ndlerRegis try regist ry) {
  34                    regi stry.addRe sourceHand ler("/reso urces/**") .addResour ceLocation s("/resour ces/");
  35           }
  36           
  37           @B ean 
  38           pu blic RestT emplate te mplate() {
  39                    retu rn new Res tTemplate( );
  40           }
  41           
  42   /*      @B ean
  43       public  LoggingHa ndler cont rollerAspe ct(){
  44           re turn new L oggingHand ler();
  45       }
  46   */
  47           
  48   }