Skip to content

Instantly share code, notes, and snippets.

View mproch's full-sized avatar
🌍
nussknacker

Maciej Próchniak mproch

🌍
nussknacker
View GitHub Profile
profile("felix.fileinstall"),
systemProperty("felix.fileinstall.dir").value(resources + "etc"),
systemProperty("felix.fileinstall.filter").value(".*\\.cfg"),
systemProperty("felix.fileinstall.poll").value("1000"),
systemProperty("felix.fileinstall.noInitialDelay").value("true"),
mavenBundle("org.apache.felix", "org.apache.felix.configadmin").startLevel(2),
mavenBundle("org.apache.felix", "org.apache.felix.fileinstall").startLevel(2),
@mproch
mproch / activiti-extensions-serviceTask.xml
Created March 27, 2011 19:02
Sample spring activiti configuration
<!-- invoker spring bean with process variables -->
<serviceTask id="updateCustomerBalance"
activiti:expression="#{customerService.updateBalance(customerId, balance)}"/>
<!-- invoke java class implementing JavaDelegate interface -->
<serviceTask id="calculateBalance"
activiti:class="pl.touk.process.BalanceCalculator"/>