Clean validator module.

This commit is contained in:
Jakub Warmuz 2014-11-21 22:03:52 +01:00
parent 9cdb7dbae2
commit 123e64ff03

View file

@ -1,12 +1,14 @@
class Validator(object):
"""
This Class will contain an API to validate configurations.
"""
"""Configuration validator."""
def redirect(self, name):
return
raise NotImplementedError()
def ocsp_stapling(self, name):
return
raise NotImplementedError()
def https(self, names):
return
raise NotImplementedError()
def hsts(self, name):
return
raise NotImplementedError()