3806. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:50:36 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.

3806.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:36 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-mock\src\main\java\gov\va\nvap\mock NewHibernateUtil.java Fri Apr 21 20:03:28 2017 UTC

3806.2 Comparison summary

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

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

3806.4 Active regular expressions

No regular expressions were active.

3806.5 Comparison detail

        1   /*
        2    * To chan ge this li cense head er, choose  License H eaders in  Project Pr operties.
        3    * To chan ge this te mplate fil e, choose  Tools | Te mplates
        4    * and ope n the temp late in th e editor.
        5    */
        6   package go v.va.nvap. mock;
        7  
        8   import org .hibernate .SessionFa ctory;
        9   import org .hibernate .cfg.Annot ationConfi guration;
        10  
        11   /**
        12    * Hiberna te Utility  class wit h a conven ient metho d to get S ession Fac tory
        13    * object.
        14    *
        15    * @author  Johann So nnenberg
        16    */
        17   public cla ss NewHibe rnateUtil  {
        18  
        19       privat e static f inal Sessi onFactory  sessionFac tory;
        20       
        21       static  {
        22           tr y {
        23                // Creat e the Sess ionFactory  from stan dard (hibe rnate.cfg. xml) 
        24                // confi g file.
        25                sessionF actory = n ew Annotat ionConfigu ration().c onfigure() .buildSess ionFactory ();
        26           }  catch (Thr owable ex)  {
        27                // Log t he excepti on. 
        28                System.e rr.println ("Initial  SessionFac tory creat ion failed ." + ex);
        29                throw ne w Exceptio nInInitial izerError( ex);
        30           }
        31       }
        32       
        33       public  static Se ssionFacto ry getSess ionFactory () {
        34           re turn sessi onFactory;
        35       }
        36   }