blob: 7a471c8a6e9e9d552bab67db3c63ef23b861fe32 [file] [log] [blame]
<ipojo xmlns:tr="org.apache.felix.ipojo.transaction">
<component classname="org.apache.felix.ipojo.transaction.test.component.FooDelegator" name="notsupported-ok">
<provides/>
<requires field="foo"/>
<tr:transaction field="transaction">
<transactional method="doSomethingGood" propagation="notsupported"/>
<transactional method="getCurrentTransaction" propagation="notsupported"/>
<transactional method="doSomethingBad" propagation="notsupported"/>
<transactional method="doSomethingBad2" norollbackfor="java.lang.UnsupportedOperationException" propagation="notsupported"/>
<transactional method="doSomethingLong" propagation="notsupported"/>
</tr:transaction>
</component>
<component classname="org.apache.felix.ipojo.transaction.test.component.FooDelegator" name="notsupported-cb">
<provides/>
<requires field="foo" />
<tr:transaction field="transaction" onCommit="onCommit" onRollback="onRollback">
<transactional method="doSomethingGood" propagation="notsupported"/>
<transactional method="getCurrentTransaction" propagation="notsupported"/>
<transactional method="doSomethingBad" propagation="notsupported"/>
<transactional method="doSomethingBad2" norollbackfor="java.lang.UnsupportedOperationException" propagation="notsupported"/>
<transactional method="doSomethingLong" propagation="notsupported"/>
</tr:transaction>
</component>
</ipojo>