192. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:13 AM 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.

192.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\persistent\hibernate PersistentInterceptorAdapter.java Wed May 29 15:26:04 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\persistent\hibernate PersistentInterceptorAdapter.java Mon Jun 10 19:27:47 2019 UTC

192.2 Comparison summary

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

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

192.4 Active regular expressions

No regular expressions were active.

192.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   // Package
  5   package go v.va.med.f w.persiste nt.hiberna te;
  6  
  7   // Java cl asses
  8   import jav a.io.Seria lizable;
  9   import jav a.util.Ite rator;
  10  
  11   import org .hibernate .CallbackE xception;
  12   import org .hibernate .EntityMod e;
  13   import org .hibernate .Intercept or;
  14   import org .hibernate .Transacti on;
  15   import org .hibernate .type.Type ;
  16  
  17   import gov .va.med.fw .service.A bstractCom ponent;
  18  
  19   // ESR cla sses
  20  
  21   /**
  22    * Provide s empty im plementati on for a h ibernate i nterceptor
  23    * 
  24    * Project : Framewor k</br> Cre ated on: 1 :43:56 PM  </br>
  25    * 
  26    * @author   DN S
  27    */
  28   public cla ss Persist entInterce ptorAdapte r extends  AbstractCo mponent im plements I nterceptor  {
  29  
  30           /* *
  31            *  A default  construct or
  32            * /
  33           pu blic Persi stentInter ceptorAdap ter() {
  34                    supe r();
  35           }
  36  
  37           /* *
  38            *  @see org. hibernate. Intercepto r#onLoad(j ava.lang.O bject,
  39            *       java .io.Serial izable, ja va.lang.Ob ject[], ja va.lang.St ring[],
  40            *       org. hibernate. type.Type[ ])
  41            * /
  42           pu blic boole an onLoad( Object arg 0, Seriali zable arg1 , Object[]  arg2, Str ing[] arg3 , Type[] a rg4)
  43                             throws  CallbackE xception {
  44                    retu rn false;
  45           }
  46  
  47           /* *
  48            *  @see org. hibernate. Intercepto r#onFlushD irty(java. lang.Objec t,
  49            *       java .io.Serial izable, ja va.lang.Ob ject[], ja va.lang.Ob ject[],
  50            *       java .lang.Stri ng[], org. hibernate. type.Type[ ])
  51            * /
  52           pu blic boole an onFlush Dirty(Obje ct arg0, S erializabl e arg1, Ob ject[] arg 2, Object[ ] arg3,
  53                             String [] arg4, T ype[] arg5 ) throws C allbackExc eption {
  54                    retu rn false;
  55           }
  56  
  57           /* *
  58            *  @see org. hibernate. Intercepto r#onSave(j ava.lang.O bject,
  59            *       java .io.Serial izable, ja va.lang.Ob ject[], ja va.lang.St ring[],
  60            *       org. hibernate. type.Type[ ])
  61            * /
  62           pu blic boole an onSave( Object arg 0, Seriali zable arg1 , Object[]  arg2, Str ing[] arg3 , Type[] a rg4)
  63                             throws  CallbackE xception {
  64                    retu rn false;
  65           }
  66  
  67           /* *
  68            *  @see org. hibernate. Intercepto r#onDelete (java.lang .Object,
  69            *       java .io.Serial izable, ja va.lang.Ob ject[], ja va.lang.St ring[],
  70            *       org. hibernate. type.Type[ ])
  71            * /
  72           pu blic void  onDelete(O bject arg0 , Serializ able arg1,  Object[]  arg2, Stri ng[] arg3,  Type[] ar g4)
  73                             throws  CallbackE xception {
  74           }
  75  
  76           /* *
  77            *  @see org. hibernate. Intercepto r#onCollec tionRecrea te(java.la ng.Object,
  78            *       java .io.Serial izable)
  79            * /
  80           pu blic void  onCollecti onRecreate (Object ar g0, Serial izable arg 1) throws  CallbackEx ception {
  81           }
  82  
  83           /* *
  84            *  @see org. hibernate. Intercepto r#onCollec tionRemove (java.lang .Object,
  85            *       java .io.Serial izable)
  86            * /
  87           pu blic void  onCollecti onRemove(O bject arg0 , Serializ able arg1)  throws Ca llbackExce ption {
  88           }
  89  
  90           /* *
  91            *  @see org. hibernate. Intercepto r#onCollec tionUpdate (java.lang .Object,
  92            *       java .io.Serial izable)
  93            * /
  94           pu blic void  onCollecti onUpdate(O bject arg0 , Serializ able arg1)  throws Ca llbackExce ption {
  95           }
  96  
  97           /* *
  98            *  @see org. hibernate. Intercepto r#preFlush (java.util .Iterator)
  99            * /
  100           pu blic void  preFlush(I terator ar g0) throws  CallbackE xception {
  101           }
  102  
  103           /* *
  104            *  @see org. hibernate. Intercepto r#postFlus h(java.uti l.Iterator )
  105            * /
  106           pu blic void  postFlush( Iterator a rg0) throw s Callback Exception  {
  107           }
  108  
  109           /* *
  110            *  @see org. hibernate. Intercepto r#isTransi ent(java.l ang.Object )
  111            * /
  112           pu blic Boole an isTrans ient(Objec t arg0) {
  113                    retu rn null;
  114           }
  115  
  116           /* *
  117            *  @see org. hibernate. Intercepto r#findDirt y(java.lan g.Object,
  118            *       java .io.Serial izable, ja va.lang.Ob ject[], ja va.lang.Ob ject[],
  119            *       java .lang.Stri ng[], org. hibernate. type.Type[ ])
  120            * /
  121           pu blic int[]  findDirty (Object ar g0, Serial izable arg 1, Object[ ] arg2, Ob ject[] arg 3,
  122                             String [] arg4, T ype[] arg5 ) {
  123                    retu rn null;
  124           }
  125  
  126           /* *
  127            *  @see org. hibernate. Intercepto r#instanti ate(java.l ang.String ,
  128            *       org. hibernate. EntityMode , java.io. Serializab le)
  129            * /
  130           pu blic Objec t instanti ate(String  arg0, Ent ityMode ar g1, Serial izable arg 2)
  131                             throws  CallbackE xception {
  132                    retu rn null;
  133           }
  134  
  135           /* *
  136            *  @see org. hibernate. Intercepto r#getEntit yName(java .lang.Obje ct)
  137            * /
  138           pu blic Strin g getEntit yName(Obje ct arg0) t hrows Call backExcept ion {
  139                    retu rn null;
  140           }
  141  
  142           /* *
  143            *  @see org. hibernate. Intercepto r#getEntit y(java.lan g.String,
  144            *       java .io.Serial izable)
  145            * /
  146           pu blic Objec t getEntit y(String a rg0, Seria lizable ar g1) throws  CallbackE xception {
  147                    retu rn null;
  148           }
  149  
  150           /* *
  151            *  @see org. hibernate. Intercepto r#afterTra nsactionBe gin(org.hi bernate.Tr ansaction)
  152            * /
  153           pu blic void  afterTrans actionBegi n(Transact ion arg0)  {
  154           }
  155  
  156           /* *
  157            *  @see org. hibernate. Intercepto r#beforeTr ansactionC ompletion( org.hibern ate.Transa ction)
  158            * /
  159           pu blic void  beforeTran sactionCom pletion(Tr ansaction  arg0) {
  160           }
  161  
  162           /* *
  163            *  @see org. hibernate. Intercepto r#afterTra nsactionCo mpletion(o rg.hiberna te.Transac tion)
  164            * /
  165           pu blic void  afterTrans actionComp letion(Tra nsaction a rg0) {
  166           }
  167  
  168           /* *
  169            *  @see org. hibernate. Intercepto r#onPrepar eStatement (java.lang .String)
  170            * /
  171           pu blic Strin g onPrepar eStatement (String ar g0) {
  172                    retu rn null;
  173           }
  174   }