diff options
author | Joel Andres Granados <jgranado@redhat.com> | 2008-02-25 15:05:32 +0100 |
---|---|---|
committer | Joel Andres Granados <jgranado@redhat.com> | 2008-02-26 14:43:55 +0100 |
commit | d811af9085d1c7a1262141d232666354bb2379b1 (patch) | |
tree | c8265e73742e40d923383413c36b2b58a13a42c3 /plugins/plugin_examples/sample2Plugin.py | |
parent | 6cc51ff0f5c4dda26fc196d0e8db35c525b79844 (diff) | |
download | firstaidkit-d811af9085d1c7a1262141d232666354bb2379b1.tar.gz firstaidkit-d811af9085d1c7a1262141d232666354bb2379b1.tar.xz firstaidkit-d811af9085d1c7a1262141d232666354bb2379b1.zip |
Use a more intuitive return class names for the default flows.
True and false are not very generic for the flows. Favorable and
Unfavorable are not completely generic but are better.
Diffstat (limited to 'plugins/plugin_examples/sample2Plugin.py')
-rw-r--r-- | plugins/plugin_examples/sample2Plugin.py | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/plugin_examples/sample2Plugin.py b/plugins/plugin_examples/sample2Plugin.py index bcaf4de..e3eaea5 100644 --- a/plugins/plugin_examples/sample2Plugin.py +++ b/plugins/plugin_examples/sample2Plugin.py @@ -26,13 +26,13 @@ class Sample2Plugin(Plugin): flows = Flow.init(Plugin) flows["extra"] = Flow({ Plugin.initial: {ReturnValue: "prepare"}, - "prepare" : {ReturnValueTrue: "diagnose"}, - "diagnose" : {ReturnValueTrue: "clean", ReturnValueFalse: "backup"}, - "backup" : {ReturnValueTrue: "fix", ReturnValueFalse: "clean"}, - "restore" : {ReturnValueTrue: "clean", ReturnValueFalse: "clean"}, - "fix" : {ReturnValueTrue: "extraStep", ReturnValueFalse: "restore"}, - "extraStep" : {ReturnValueTrue: "clean", ReturnValueFalse: "clean"}, - "clean" : {ReturnValueTrue: Plugin.final} + "prepare" : {Favorable: "diagnose"}, + "diagnose" : {Favorable: "clean", Unfavorable: "backup"}, + "backup" : {Favorable: "fix", Unfavorable: "clean"}, + "restore" : {Favorable: "clean", Unfavorable: "clean"}, + "fix" : {Favorable: "extraStep", Unfavorable: "restore"}, + "extraStep" : {Favorable: "clean", Unfavorable: "clean"}, + "clean" : {Favorable: Plugin.final} }, description="Fixing sequence with one added extraStep") default_flow = "extra" @@ -44,25 +44,25 @@ class Sample2Plugin(Plugin): Plugin.__init__(self, *args, **kwargs) def prepare(self): - self._result=ReturnValueTrue + self._result=Favorable def clean(self): - self._result=ReturnValueTrue + self._result=Favorable def backup(self): - self._result=ReturnValueTrue + self._result=Favorable def restore(self): - self._result=ReturnValueTrue + self._result=Favorable def diagnose(self): - self._result=ReturnValueFalse + self._result=Unfavorable def fix(self): - self._result=ReturnValueTrue + self._result=Favorable def extraStep(self): - self._result=ReturnValueTrue + self._result=Favorable def get_plugin(): return Sample2Plugin |