summaryrefslogtreecommitdiffstats
path: root/sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml
diff options
context:
space:
mode:
authordougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68>2009-07-06 12:41:48 +0000
committerdougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68>2009-07-06 12:41:48 +0000
commitf1dfba0cc9000fcf881267608c02b683dcf2f796 (patch)
treed7653d10bdec1ab0b404fd92092f8c8aef0c3b01 /sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml
parent6c479469ad629e1bc05e1e2eb4114941b4405f5a (diff)
- Restructured the iTest package
- Added a new test scenario: Primary-Backup with N backups - Added a new tag element (<affected_participants>) into the recovery rules XML file git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@791465 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml b/sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml
index b0db8cbd9a..5df6a321e6 100644
--- a/sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml
+++ b/sandbox/dougsleite/guardian-model/src/main/resources/recoveryrules.xml
@@ -23,33 +23,33 @@
<rule name="Rule1" signaled_exception="org.apache.tuscany.sca.guardian.JoinException">
<participant match="SIGNALER">
- <throw_exception class="org.apache.tuscany.sca.guardian.itests.PrimaryExistsException" target_context="MAIN" min_participant_joined="2"/>
+ <throw_exception class="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.PrimaryExistsException" target_context="MAIN" min_participant_joined="2"/>
</participant>
<participant match="!SIGNALER">
- <throw_exception class="org.apache.tuscany.sca.guardian.itests.BackupJoinedException" target_context="PRIMARY" min_participant_joined="2"/>
+ <throw_exception class="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.BackupJoinedException" target_context="PRIMARY" min_participant_joined="2"/>
</participant>
</rule>
- <rule name="Rule2" signaled_exception="org.apache.tuscany.sca.guardian.itests.PrimaryFailedException">
+ <rule name="Rule2" signaled_exception="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.PrimaryFailedException">
<participant match="*.PRIMARY">
- <throw_exception class="org.apache.tuscany.sca.guardian.itests.PrimaryFailedException" target_context="INIT_CONTEXT"/>
+ <throw_exception class="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.PrimaryFailedException" target_context="INIT_CONTEXT"/>
</participant>
<participant match="*.BACKUP">
- <throw_exception class="org.apache.tuscany.sca.guardian.itests.PrimaryFailedException" target_context="MAIN"/>
+ <throw_exception class="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.PrimaryFailedException" target_context="MAIN"/>
</participant>
</rule>
- <rule name="Rule3" signaled_exception="org.apache.tuscany.sca.guardian.itests.BackupFailedException">
+ <rule name="Rule3" signaled_exception="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.BackupFailedException">
<participant match="*.PRIMARY">
- <throw_exception class="org.apache.tuscany.sca.guardian.itests.BackupFailedException" target_context="PRIMARY"/>
+ <throw_exception class="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.BackupFailedException" target_context="PRIMARY"/>
</participant>
<participant match="*.BACKUP">
- <throw_exception class="org.apache.tuscany.sca.guardian.itests.BackupFailedException" target_context="INIT_CONTEXT"/>
+ <throw_exception class="org.apache.tuscany.sca.guardian.itests.primaryBackup.common.BackupFailedException" target_context="INIT_CONTEXT"/>
</participant>
</rule>