burp-ui/burpui/misc/parser/interface.py
2014-12-23 08:48:37 +01:00

15 lines
535 B
Python

# -*- coding: utf8 -*-
class BUIparser(object):
def __init__(self, app=None, conf=None):
self.app = app
self.conf = conf
def read_server_conf(self):
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
def store_server_conf(self, data):
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
def get_priv_attr(self, key):
raise NotImplementedError("Sorry, the current Parser does not implement this method!")