14083. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/4/2018 4:54:41 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.

14083.1 Files compared

# Location File Last Modified
1 CHAMPVA_Benefit_Eligibility_v1.0.0.zip\webservice\champvapay-service\src\main\java\gov\va\med\mbcp\champva\rest ChampVAApplication.java Thu Dec 21 19:52:28 2017 UTC
2 CHAMPVA_Benefit_Eligibility_v1.0.0.zip\webservice\champvapay-service\src\main\java\gov\va\med\mbcp\champva\rest ChampVAApplication.java Thu Jan 4 21:00:40 2018 UTC

14083.2 Comparison summary

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

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

14083.4 Active regular expressions

No regular expressions were active.

14083.5 Comparison detail

  1   /**
  2    * The pac kage gov.v a.med.mbcp .champva.d ao.common  contains t he public  Interface  for 
  3    * retriev al of CHAM PVA CodeRe sults from  the targe t VistA in stance.
  4    * 
  5    */
  6   package go v.va.med.m bcp.champv a.rest;
  7  
  8   import jav a.util.Has hSet;
  9   import jav a.util.Set ;
  10  
  11   import jav ax.ws.rs.A pplication Path;
  12   import jav ax.ws.rs.c ore.Applic ation;
  13  
  14   /**
  15    * The Cha mpVAApplic ation Clas s supports  the estab lishment o f an appli cation roo t path,
  16    * allowin g us to es tablish a  URI patter n conforma nt with th e expectat ions of th e VAMF
  17    * Archite cture Team , and over ride the d efault gen erated by  Jersey.
  18    * 
  19    * @author   PII
  20    * @versio n 1.0.0
  21    */
  22   @Applicati onPath("v1 ")
  23   public cla ss ChampVA Applicatio n extends  Applicatio n {
  24     
  25       /* (no n-Javadoc)
  26        * @se e javax.ws .rs.core.A pplication #getClasse s()
  27        */
  28       @Overr ide
  29       public  Set<Class <?>> getCl asses() {
  30           Se t<Class<?> > s = new  HashSet<Cl ass<?>>();
  31           s. add(ChampV AResource. class);
  32           re turn s;
  33       }
  34  
  35   }