certbot/letsencrypt/client/validator.py
2014-11-22 00:22:09 +01:00

14 lines
327 B
Python

class Validator(object):
"""Configuration validator."""
def redirect(self, name):
raise NotImplementedError()
def ocsp_stapling(self, name):
raise NotImplementedError()
def https(self, names):
raise NotImplementedError()
def hsts(self, name):
raise NotImplementedError()