18. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 2/9/2017 12:58:03 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.

18.1 Files compared

# Location File Last Modified
1 Genisis2Services-2.0.zip\Genisis2Services-master\src\main\resources spring-jbpm-config.xml Fri Jan 27 23:02:14 2017 UTC
2 Genisis2Services-2.0.zip\Genisis2Services-master\src\main\resources spring-jbpm-config.xml Wed Feb 8 18:43:12 2017 UTC

18.2 Comparison summary

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

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

18.4 Active regular expressions

No regular expressions were active.

18.5 Comparison detail

  1   <?xml 
  2     version="1 .0" 
  3     encoding=" UTF-8"
  4   ?>
  5   <beans 
  6     xmlns="htt p://www.sp ringframew ork.org/sc hema/beans "
  7       
  8     xmlns:xsi= "http://ww w.w3.org/2 001/XMLSch ema-instan ce" 
  9     xmlns:p="h ttp://www. springfram ework.org/ schema/p"
  10       
  11     xmlns:aop= "http://ww w.springfr amework.or g/schema/a op" 
  12     xmlns:cont ext="http: //www.spri ngframewor k.org/sche ma/context "
  13       
  14     xmlns:jee= "http://ww w.springfr amework.or g/schema/j ee" 
  15     xmlns:tx=" http://www .springfra mework.org /schema/tx "
  16       
  17     xmlns:task ="http://w ww.springf ramework.o rg/schema/ task"
  18       
  19     xsi:schema Location=" http://www .springfra mework.org /schema/ao p http://w ww.springf ramework.o rg/schema/ aop/spring -aop-4.1.x sd http:// www.spring framework. org/schema /beans htt p://www.sp ringframew ork.org/sc hema/beans /spring-be ans-4.1.xs d http://w ww.springf ramework.o rg/schema/ context ht tp://www.s pringframe work.org/s chema/cont ext/spring -context-4 .1.xsd htt p://www.sp ringframew ork.org/sc hema/jee h ttp://www. springfram ework.org/ schema/jee /spring-je e-4.1.xsd  http://www .springfra mework.org /schema/tx  http://ww w.springfr amework.or g/schema/t x/spring-t x-4.1.xsd  http://www .springfra mework.org /schema/ta sk http:// www.spring framework. org/schema /task/spri ng-task-4. 1.xsd"
  20   >
  21      
  22         
  23     <!-- suppo rt spring  annotation  -->
  24         
  25     <context:a nnotation- config />
  26         
  27     <!-- suppo rt annotat ion transa ction -->
  28         
  29     <tx:annota tion-drive n />
  30      
  31         
  32     <!-- decla re datasou rce -->
  33         
  34     <bean 
  35      id="jbpmDa taSource"
  36             
  37      class="org .springfra mework.jdb c.datasour ce.DriverM anagerData Source"
  38     >
  39              
  40      <property 
  41       name="driv erClassNam e" 
  42       value="net .sourcefor ge.jtds.jd bc.Driver"  
  43      />
  44             
  45      <!-- <prop erty name= "url" valu e="jdbc:jt ds:sqlserv er:// IP                 /GENISIS_J BPM_DB" />
  46                <property  name="url"  value="jd bc:jtds:sq lserver:// localhost: PORT / D N
S
" />
  47                <property  name="user name" valu e=" AI " />
  48                <property  name="pass word" valu e=" AI " /> -->
  49              
  50              
  51      <property 
  52       name="url"  
  53       value="${j bpm.db.url }" 
  54      /> 
  55              
  56      <property 
  57       name="user name" 
  58       value="${j bpm.db.use rname}"
  59      />
  60              
  61      <property 
  62       name="pass word" 
  63       value="${j bpm.db.pas sword}"
  64      />
  65          
  66     </bean>
  67         
  68       
  69        
  70         
  71     <!--Hibern ate sessio n factory  configurat ion -->
  72         
  73     <bean 
  74      id="jbpmSe ssionFacto ry"          
  75      class="org .springfra mework.orm .hibernate 5.LocalSes sionFactor yBean"
  76     >
  77              
  78      <property 
  79       name="data Source" 
  80       ref="jbpmD ataSource"  
  81      />
  82              
  83      <!-- load  hibernate  configurat ion file - ->
  84              
  85      <property 
  86       name="conf igLocation
  87       value="cla sspath:hib ernate.cfg .xml" 
  88      />
  89              
  90      <!-- where  to find t he ORM cla sses -->
  91              
  92      <property 
  93       name="pack agesToScan
  94       value="gov .va.genisi s2.model" 
  95      />
  96          
  97     </bean>
  98      
  99         
  100     <!-- Trans action man ager -->
  101         
  102     <bean 
  103      id="jbpmTr ansactionM anager"
  104             
  105      class="org .springfra mework.orm .hibernate 5.Hibernat eTransacti onManager"
  106     >
  107              
  108      <property 
  109       name="sess ionFactory
  110       ref="jbpmS essionFact ory"
  111      >
  112      </property >
  113          
  114     </bean>
  115         
  116          
  117     <bean 
  118      id="hibern ateJBPMTem plate" 
  119      class="org .springfra mework.orm .hibernate 5.Hibernat eTemplate"
  120     >
  121              
  122      <property 
  123       name="sess ionFactory
  124       ref="jbpmS essionFact ory" 
  125      />
  126          
  127     </bean>
  128      
  129       
  130   </beans>