18 lines
319 B
Python
18 lines
319 B
Python
|
|
class BaseHandler(object):
|
|
|
|
|
|
def __init__(self, name, matcher):
|
|
self.name = name
|
|
self._destroy = False
|
|
self._payload = None
|
|
self._matcher = matcher
|
|
|
|
def match(self, xml):
|
|
return self._matcher.match(xml)
|
|
|
|
def run(self, payload):
|
|
self._payload = payload
|
|
|
|
def checkDelete(self):
|
|
return self._destroy
|