27. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/24/2017 5:17:18 PM Eastern 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.

27.1 Files compared

# Location File Last Modified
1 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\service MhvBaseService.java Fri Sep 16 15:30:42 2016 UTC
2 MHV_2017.2.0.0 Code In Flight.zip\National Portal\mhv_rxrefill\mhv-rx-refill-portal-main\src\main\java\gov\va\med\domain\service MhvBaseService.java Fri Mar 24 20:32:32 2017 UTC

27.2 Comparison summary

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

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

27.4 Active regular expressions

No regular expressions were active.

27.5 Comparison detail

  1   package go v.va.med.d omain.serv ice;
  2  
  3   import gov .va.med.do main.servi ce.config. MhvConfigS ervice;
  4   import gov .va.med.fr amework.Ba seService;
  5   import gov .va.med.fr amework.lo gging.ILog ger;
  6   import gov .va.med.fr amework.lo gging.Logg erFactory;
  7  
  8   /**
  9    * Provide s basic se rvices for  MHV Domai n. General  usage of  this class  would be  to 
  10    * extend  your class  from this  one and s tart using  services  provided i n this cla ss as well  as 
  11    * in its  parent cla ss called  BaseServic e.
  12    * @author   PII
  13    * @versio n $Id: Mhv BaseServic e.java,v 1 .1.1.1 200 5/05/13 19 :40:40 jon .crater Ex p $
  14    * @since  MHV 2.0
  15    */
  16   public cla ss MhvBase Service ex tends Base Service { 
  17       privat e static I Logger log ger = null ;
  18       
  19       /**
  20        * Pro vide the n ame of the  logger fo r the appl ication
  21        */
  22       public  String ge tLoggerNam e() {
  23           re turn MhvCo nfigServic e.getInsta nce().getL oggerName( );
  24       }
  25  
  26       /**
  27        * Pro vide the d efault Log ger type a n applicat ion in thi s domain
  28        */
  29       public  int getLo ggerType()  {
  30           re turn Logge rFactory.W L_NONCATAL OG_LOGGER;
  31       }
  32       
  33               
  34       /**
  35        * Cre ates an in stance of  the class
  36        */
  37       public  MhvBaseSe rvice() {
  38           su per();
  39       }
  40       
  41        publi c static I Logger get MhvLogger( ) {
  42           sy nchronized  (MhvBaseS ervice.cla ss) {
  43                if (logg er == null ) {
  44                    MhvB aseService  service =  new MhvBa seService( );
  45                    logg er = servi ce.getLogg er();
  46                }   
  47           }    
  48           re turn logge r;
  49       }
  50