Clean validator module.

This commit is contained in:
Jakub Warmuz
2014-11-22 00:22:09 +01:00
parent 9cdb7dbae2
commit 123e64ff03
+9 -7
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()