Package rubacon :: Package readers :: Module RuleReader
[hide private]
[frames] | no frames]

Source Code for Module rubacon.readers.RuleReader

1 -class RuleReader(object):
2 ___STORAGE="data/db.rules" 3 # @ParamType aName string 4 # @ParamType aXml string 5 # Update the rule with the given name
6 - def updateRule(self, aName, aXml):
7 pass
8 9 # @ReturnType void 10 # @ParamType aName 11 # Remove the rule with the given name.
12 - def removeRule(self, aName):
13 pass
14 15 # Get all rules from the repository.
16 - def getRules(self):
17 pass
18 19 # @ParamType aRuleName 20 # Get a rule by its name.
21 - def getRuleByName(self, aRuleName):
22 pass
23